-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraph.html
More file actions
1801 lines (1779 loc) · 94.2 KB
/
graph.html
File metadata and controls
1801 lines (1779 loc) · 94.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Rasa Core Visualisation</title>
<script src="https://dagrejs.github.io/project/dagre-d3/latest/dagre-d3.min.js"></script>
<script src="https://dagrejs.github.io/project/dagre/latest/dagre.min.js"></script>
<script src="https://d3js.org/d3.v4.js"></script>
<script src="https://dagrejs.github.io/project/graphlib-dot/v0.6.3/graphlib-dot.js"></script>
</head>
<body>
<div id="errormsg" style="color: #b00"></div>
<svg>
<style id="graph-style">
.node.invisible > rect {
display: none;
}
.node.start > rect {
fill: #7f7;
rx: 30;
ry: 18;
}
.node.end > rect {
fill: #f77;
rx: 30;
ry: 18;
}
.node:not(.active) > rect, .node:not(.active) > .label {
opacity: 0.4;
}
.edgePath:not(.active) path {
opacity: 0.4;
}
.node.ellipsis > rect {
fill: #CCC;
}
.node.intent > rect {
fill: #7ff;
}
.node.dashed > rect {
stroke-dasharray: 5;
}
text {
font-weight: 300;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serf, serif;
font-size: 14px;
color: #1f1d1d;
}
.node rect {
stroke: #444;
fill: #fff;
stroke-width: 1.5px;
}
.edgePath path {
stroke: #333;
stroke-width: 1.5px;
}
svg {
position: fixed;
top: 10px;
left: 0;
height: 100%;
width: 100%
}
</style>
<g></g>
</svg>
<script>
function serveGraph() {
let oldInputGraphValue;
const url = 'visualization.dot';
const refreshInterval = 500;
// trigger a refresh by fetching an updated graph
setInterval(function () {
fetch(url).then(r => r.text()).then(dot => {
document.getElementById('errormsg').innerHTML = '';
if (oldInputGraphValue === dot) return;
oldInputGraphValue = dot;
drawGraph(dot);
}).catch(err => {
document.getElementById('errormsg').innerHTML =
'Failed to update plot. (' + err.message + ')';
});
}, refreshInterval);
}
function drawGraph(graph) {
let g = graphlibDot.read(graph);
// Set margins, if not present
if (!g.graph().hasOwnProperty("marginx") &&
!g.graph().hasOwnProperty("marginy")) {
g.graph().marginx = 20;
g.graph().marginy = 20;
}
g.graph().transition = function (selection) {
return selection.transition().duration(300);
};
// Render the graph into svg g
d3.select("svg g").call(render, g);
}
// Set up zoom support
const svg = d3.select("svg"),
inner = d3.select("svg g"),
zoom = d3.zoom().on("zoom", function () {
inner.attr("transform", d3.event.transform);
});
svg.call(zoom);
// Create and configure the renderer
const render = dagreD3.render();
let isClient = false;
isClient = true;
if (isClient) {
// Mark all nodes and their edges as active
cssRules = document.getElementById('graph-style').sheet.cssRules;
cssRules[3].style.opacity = 1;
cssRules[4].style.opacity = 1;
let graph;
graph = `digraph {
0 [class="start active", fillcolor=green, fontsize=12, label=START, style=filled];
"-1" [class=end, fillcolor=red, fontsize=12, label=END, style=filled];
1 [class="", fontsize=12, label=utter_reference_chicago];
2 [class="", fontsize=12, label=utter_information_fateful_triangle];
3 [class="", fontsize=12, label=utter_information_handle_book];
4 [class="", fontsize=12, label=utter_information_boolean_operators];
5 [class="", fontsize=12, label=utter_information_search_engine];
6 [class="", fontsize=12, label=utter_information_access_database];
7 [class="", fontsize=12, label=utter_information_music_library];
8 [class="", fontsize=12, label=utter_information_theological_library];
9 [class="", fontsize=12, label=utter_information_education_library];
10 [class="", fontsize=12, label=utter_information_natural_sciences_library];
11 [class="", fontsize=12, label=utter_contact_office];
12 [class="", fontsize=12, label=utter_information_mahikeng_library];
13 [class="", fontsize=12, label=utter_information_potchefstroom_library];
14 [class="", fontsize=12, label=utter_information_vaal_library];
15 [class="", fontsize=12, label=utter_information_request_book];
16 [class="", fontsize=12, label=utter_information_copy_shop];
17 [class="", fontsize=12, label=utter_information_closing_date_admission];
18 [class="", fontsize=12, label=utter_information_opac];
19 [class="", fontsize=12, label=utter_information_scopus];
20 [class="", fontsize=12, label=utter_information_transcript_retrieval];
21 [class="", fontsize=12, label=utter_contact_dr_moyo];
22 [class="", fontsize=12, label=utter_contact_student_finances];
23 [class="", fontsize=12, label=utter_information_reaxys];
24 [class="", fontsize=12, label=utter_information_library_lost_and_found];
25 [class="", fontsize=12, label=utter_information_cant_get_book];
26 [class="", fontsize=12, label=utter_contact_admissions];
27 [class="", fontsize=12, label=utter_information_book_appointment];
28 [class="", fontsize=12, label=utter_information_ashrae];
29 [class="", fontsize=12, label=utter_information_constitution];
30 [class="", fontsize=12, label=utter_information_cellphone_rules];
31 [class="", fontsize=12, label=utter_information_accessability];
32 [class="", fontsize=12, label=utter_information_access_distance_student];
33 [class="", fontsize=12, label=utter_language_style_guide];
34 [class="", fontsize=12, label=utter_information_submit_assignment];
35 [class="", fontsize=12, label=utter_information_access_distance_postgrad];
36 [class="", fontsize=12, label=utter_information_book_group_study_unit];
37 [class="", fontsize=12, label=utter_information_cancel_room_booking];
38 [class="", fontsize=12, label=utter_information_reset_efundi_password];
39 [class="", fontsize=12, label=utter_information_update_efundi_email];
40 [class="", fontsize=12, label=utter_information_find_module_efundi];
41 [class="", fontsize=12, label=utter_information_what_is_efundi];
42 [class="", fontsize=12, label=utter_information_how_to_efundi];
43 [class="", fontsize=12, label=utter_information_deregister];
44 [class="", fontsize=12, label=utter_information_library_training_session];
45 [class="", fontsize=12, label=utter_information_programme_leaders];
46 [class="", fontsize=12, label=utter_new_student_application];
47 [class="", fontsize=12, label=utter_information_publish_article];
48 [class="", fontsize=12, label=utter_information_endnote_license];
49 [class="", fontsize=12, label=utter_information_recommendation_letter];
50 [class="", fontsize=12, label=utter_information_access_textbook_list];
51 [class="", fontsize=12, label=utter_information_buy_books];
52 [class="", fontsize=12, label=utter_information_endnote_credentials];
53 [class="", fontsize=12, label=utter_information_sources_law];
54 [class="", fontsize=12, label=utter_information_bursaries];
55 [class="", fontsize=12, label=utter_information_cid_manual];
56 [class="", fontsize=12, label=utter_contact_coffee_shop];
57 [class="", fontsize=12, label=utter_contact_details_international_office];
58 [class="", fontsize=12, label=utter_contact_astrovilla];
59 [class="", fontsize=12, label=utter_information_prescribed_textbooks];
60 [class="", fontsize=12, label=utter_information_maximum_books];
61 [class="", fontsize=12, label=utter_information_nsfas_accomodation];
62 [class="", fontsize=12, label=utter_information_diy_password];
63 [class="", fontsize=12, label=utter_information_career_centre];
64 [class="", fontsize=12, label=utter_information_access_articles];
65 [class="", fontsize=12, label=utter_contact_christine];
66 [class="", fontsize=12, label=utter_information_registration_fee];
67 [class="", fontsize=12, label=utter_information_academic_results];
68 [class="", fontsize=12, label=utter_contact_nwu];
69 [class="", fontsize=12, label=utter_information_social_work_study_duration];
70 [class="", fontsize=12, label=utter_information_late_application];
71 [class="", fontsize=12, label=utter_information_clarification_application_status];
72 [class="", fontsize=12, label=utter_information_sync_endnote];
73 [class="", fontsize=12, label=utter_information_ebsco_password];
74 [class="", fontsize=12, label=utter_information_register_efundi];
75 [class="", fontsize=12, label=utter_reference_webcast];
76 [class="", fontsize=12, label=utter_information_library_staff];
77 [class="", fontsize=12, label=utter_information_search_for_cases];
78 [class="", fontsize=12, label=utter_information_interlibrary_loan];
79 [class="", fontsize=12, label=utter_contact_study_equiries];
80 [class="", fontsize=12, label=utter_information_cas_authentification];
81 [class="", fontsize=12, label=utter_cas_log_screen];
82 [class="", fontsize=12, label=utter_information_find_acts];
83 [class="", fontsize=12, label=utter_information_university_account];
84 [class="", fontsize=12, label=utter_information_change_campus];
85 [class="", fontsize=12, label=utter_information_calculate_aps_score];
86 [class="", fontsize=12, label=utter_information_borrow_encyclopedia];
87 [class="", fontsize=12, label=utter_information_donate_books];
88 [class="", fontsize=12, label=utter_information_IT_desk];
89 [class="", fontsize=12, label=utter_information_toc];
90 [class="", fontsize=12, label=utter_information_link_ORCiD];
91 [class="", fontsize=12, label=utter_contact_general];
92 [class="", fontsize=12, label=utter_information_vaal_catalogue];
93 [class="", fontsize=12, label=utter_information_library_catalogue];
94 [class="", fontsize=12, label=utter_ebook_catalogue];
95 [class="", fontsize=12, label=utter_information_libraries_and_spaces];
96 [class="", fontsize=12, label=utter_information_graduate_student_access];
97 [class="", fontsize=12, label=utter_information_book_search];
98 [class="", fontsize=12, label=utter_information_britannica];
99 [class="", fontsize=12, label=utter_information_upload_dropbox];
100 [class="", fontsize=12, label=utter_information_library_managment];
101 [class="", fontsize=12, label=utter_information_research_commons];
102 [class="", fontsize=12, label=utter_information_academic_record];
103 [class="", fontsize=12, label=utter_information_library_holidays];
104 [class="", fontsize=12, label=utter_information_structure_assignment];
105 [class="", fontsize=12, label=utter_information_search_strategy];
106 [class="", fontsize=12, label=utter_information_SA_media];
107 [class="", fontsize=12, label=utter_information_check_book_status];
108 [class="", fontsize=12, label=utter_information_find_author];
109 [class="", fontsize=12, label=utter_information_unblock_card];
110 [class="", fontsize=12, label=utter_information_prezi];
111 [class="", fontsize=12, label=utter_information_open_article];
112 [class="", fontsize=12, label=utter_information_nwu_wifi];
113 [class="", fontsize=12, label=utter_information_novels];
114 [class="", fontsize=12, label=utter_information_return_ebook];
115 [class="", fontsize=12, label=utter_information_law_cases];
116 [class="", fontsize=12, label=utter_information_book_loan_duration];
117 [class="", fontsize=12, label=utter_information_cybersecurity];
118 [class="", fontsize=12, label=utter_information_library_hours_quick_facts];
119 [class="", fontsize=12, label=utter_information_library_hours];
120 [class="", fontsize=12, label=utter_information_library_non_physical];
121 [class="", fontsize=12, label=utter_information_operating_hours];
122 [class="", fontsize=12, label=utter_information_borrow_book];
123 [class="", fontsize=12, label=utter_information_norton];
124 [class="", fontsize=12, label=utter_information_learn_theology];
125 [class="", fontsize=12, label=utter_information_requirements_coaching_science];
126 [class="", fontsize=12, label=utter_information_wikipedia];
127 [class="", fontsize=12, label=utter_information_study_change];
128 [class="", fontsize=12, label=utter_information_book_seminar_room];
129 [class="", fontsize=12, label=utter_information_mahikeng_librarians];
130 [class="", fontsize=12, label=utter_information_eating_in_library];
131 [class="", fontsize=12, label=utter_information_cant_access_library];
132 [class="", fontsize=12, label=utter_information_bcom_accounting];
133 [class="", fontsize=12, label=utter_information_find_study];
134 [class="", fontsize=12, label=utter_find_study_link_one];
135 [class="", fontsize=12, label=utter_find_study_link_two];
136 [class="", fontsize=12, label=utter_find_study_link_three];
137 [class="", fontsize=12, label=utter_find_study_link_four];
138 [class="", fontsize=12, label=utter_find_study_link_five];
139 [class="", fontsize=12, label=utter_information_using_nwu_library];
140 [class="", fontsize=12, label=utter_information_using_nwu_library_one];
141 [class="", fontsize=12, label=utter_information_using_nwu_library_two];
142 [class="", fontsize=12, label=utter_information_using_nwu_library_three];
143 [class="", fontsize=12, label=utter_information_using_nwu_library_four];
144 [class="", fontsize=12, label=utter_information_register_question_papers];
145 [class="", fontsize=12, label=utter_information_ctl];
146 [class="", fontsize=12, label=utter_information_upload_assignment];
147 [class="", fontsize=12, label=utter_return_books_quick_facts];
148 [class="", fontsize=12, label=utter_information_renew_book];
149 [class="", fontsize=12, label=utter_information_renew_book_online];
150 [class="", fontsize=12, label=utter_return_books];
151 [class="", fontsize=12, label=utter_return_books_sunday];
152 [class="", fontsize=12, label=utter_information_proof_of_registration];
153 [class="", fontsize=12, label=utter_information_nwu_template];
154 [class="", fontsize=12, label=utter_nwu_template_one];
155 [class="", fontsize=12, label=utter_nwu_template_two];
156 [class="", fontsize=12, label=utter_information_grammarly];
157 [class="", fontsize=12, label=utter_information_alde_alda];
158 [class="", fontsize=12, label=utter_information_juta];
159 [class="", fontsize=12, label=utter_information_endnote_error];
160 [class="", fontsize=12, label=utter_information_IT_services];
161 [class="", fontsize=12, label=utter_information_WGSN];
162 [class="", fontsize=12, label=utter_information_education_research_resources];
163 [class="", fontsize=12, label=utter_information_university_number];
164 [class="", fontsize=12, label=utter_information_exam_timetable];
165 [class="", fontsize=12, label=utter_information_class_assessment];
166 [class="", fontsize=12, label=utter_information_graduation];
167 [class="", fontsize=12, label=utter_information_import_style_endnote];
168 [class="", fontsize=12, label=utter_information_access_authorities];
169 [class="", fontsize=12, label=utter_information_registration_form_act];
170 [class="", fontsize=12, label=utter_information_groupwise];
171 [class="", fontsize=12, label=utter_information_engineering_final_year_projects];
172 [class="", fontsize=12, label=utter_information_engineering_final_year_reports];
173 [class="", fontsize=12, label=utter_information_write_cv];
174 [class="", fontsize=12, label=utter_information_lost_book];
175 [class="", fontsize=12, label=utter_information_nsfas];
176 [class="", fontsize=12, label=utter_information_agle_curriculum];
177 [class="", fontsize=12, label=utter_information_engineering];
178 [class="", fontsize=12, label=utter_information_registration_forms];
179 [class="", fontsize=12, label=utter_information_calender];
180 [class="", fontsize=12, label=utter_information_multingual_languages_dictionary];
181 [class="", fontsize=12, label=utter_information_get_sources];
182 [class="", fontsize=12, label=utter_information_calculate_module_credit];
183 [class="", fontsize=12, label=utter_information_apply_to_nwu];
184 [class="", fontsize=12, label=utter_information_green_token];
185 [class="", fontsize=12, label=utter_information_download_endnote];
186 [class="", fontsize=12, label=utter_information_library_pin];
187 [class="", fontsize=12, label=utter_information_distance_learning_programmes];
188 [class="", fontsize=12, label=utter_information_education];
189 [class="", fontsize=12, label=utter_information_download_study_guide];
190 [class="", fontsize=12, label=utter_information_distance_learning_360_service];
191 [class="", fontsize=12, label=utter_most_asked_questions];
192 [class="", fontsize=12, label=utter_information_bookings_and_training_events];
193 [class="", fontsize=12, label=utter_information_printing_credits];
194 [class="", fontsize=12, label=utter_printing_binding_scanning_services];
195 [class="", fontsize=12, label=utter_information_international_books];
196 [class="", fontsize=12, label=utter_information_library_password];
197 [class="", fontsize=12, label=utter_information_journal_catalogue];
198 [class="", fontsize=12, label=utter_information_download_book];
199 [class="", fontsize=12, label=utter_information_economics];
200 [class="", fontsize=12, label=utter_information_memorandum_past_papers];
201 [class="", fontsize=12, label=utter_information_past_exam_papers];
202 [class="", fontsize=12, label=utter_information_eds_vs_library_catalogue];
203 [class="", fontsize=12, label=utter_database];
204 [class="", fontsize=12, label=utter_information_potchefstroom_turnitin_admin];
205 [class="", fontsize=12, label=utter_efundi];
206 [class="", fontsize=12, label=utter_information_reset_student_password];
207 [class="", fontsize=12, label=utter_information_book_appointment_writing_lab];
208 [class="", fontsize=12, label=utter_information_ethical_requirements_postgraduate];
209 [class="", fontsize=12, label=utter_information_register_orcid];
210 [class="", fontsize=12, label=utter_information_business];
211 [class="", fontsize=12, label=utter_information_search_orcid_number];
212 [class="", fontsize=12, label=utter_research];
213 [class="", fontsize=12, label=utter_find_information];
214 [class="", fontsize=12, label=utter_libguides];
215 [class="", fontsize=12, label=utter_information_libguide];
216 [class="", fontsize=12, label=utter_about_the_library];
217 [class="", fontsize=12, label=utter_information_postgrad_application];
218 [class="", fontsize=12, label=utter_information_campus_map];
219 [class="", fontsize=12, label=utter_information_prospectus];
220 [class="", fontsize=12, label=utter_about_the_nwu];
221 [class="", fontsize=12, label=utter_information_health_sciences];
222 [class="", fontsize=12, label=utter_loan_services];
223 [class="", fontsize=12, label=utter_information_late_fees];
224 [class="", fontsize=12, label=utter_information_late_fees_two];
225 [class="", fontsize=12, label=utter_library_homepage];
226 [class="", fontsize=12, label=utter_information_best_search_engine];
227 [class="", fontsize=12, label=utter_information_cal_system];
228 [class="", fontsize=12, label=utter_information_allocated_book_search];
229 [class="", fontsize=12, label=utter_information_accomodation];
230 [class="", fontsize=12, label=utter_information_postgraduate_library];
231 [class="", fontsize=12, label=utter_information_postgraduate_library_mahikeng];
232 [class="", fontsize=12, label=utter_information_postgraduate_library_potchefstroom];
233 [class="", fontsize=12, label=utter_information_postgraduate_library_vaal];
234 [class="", fontsize=12, label=utter_information_borrow_dictionary];
235 [class="", fontsize=12, label=utter_information_libanswers];
236 [class="", fontsize=12, label=utter_information_humanities];
237 [class="", fontsize=12, label=utter_information_language_practitioners];
238 [class="", fontsize=12, label=utter_information_ebsco];
239 [class="", fontsize=12, label=utter_information_binding_application_form];
240 [class="", fontsize=12, label=utter_information_binding];
241 [class="", fontsize=12, label=utter_information_submissions_of_final_copies];
243 [class="", fontsize=12, label=utter_binding_quick_facts];
244 [class="", fontsize=12, label=utter_information_binding];
245 [class="", fontsize=12, label=utter_information_binding_link];
246 [class="", fontsize=12, label=utter_information_binding_non_students];
247 [class="", fontsize=12, label=utter_information_endnote_incorrect_reference];
248 [class="", fontsize=12, label=utter_information_h_index_one];
249 [class="", fontsize=12, label=utter_h_index_link_one];
250 [class="", fontsize=12, label=utter_h_index_link_two];
251 [class="", fontsize=12, label=utter_information_h_index_two];
252 [class="", fontsize=12, label=utter_h_index_link_three];
253 [class="", fontsize=12, label=utter_information_computer_science_and_chemistry];
254 [class="", fontsize=12, label=utter_information_module_books];
255 [class="", fontsize=12, label=utter_information_diy_error];
256 [class="", fontsize=12, label=utter_information_law];
257 [class="", fontsize=12, label=utter_information_distance_learning_submit_assignment];
258 [class="", fontsize=12, label=utter_information_assignment_library];
259 [class="", fontsize=12, label=utter_information_google_scholar];
260 [class="", fontsize=12, label=utter_information_google_scholar_access];
261 [class="", fontsize=12, label=utter_information_google_scholar_library];
262 [class="", fontsize=12, label=utter_information_google_scholar_error];
263 [class="", fontsize=12, label=utter_information_goggle_scholar_link];
264 [class="", fontsize=12, label=utter_information_ebook_quick_facts];
265 [class="", fontsize=12, label=utter_information_define_ebook];
266 [class="", fontsize=12, label=utter_information_access_ebooks];
267 [class="", fontsize=12, label=utter_copy_paste_print_ebooks];
268 [class="", fontsize=12, label=utter_information_post_books];
269 [class="", fontsize=12, label=utter_information_library_directions];
270 [class="", fontsize=12, label=utter_information_yearbook];
271 [class="", fontsize=12, label=utter_information_dictionary_encyclopedia];
272 [class="", fontsize=12, label=utter_information_course_reserves];
273 [class="", fontsize=12, label=utter_information_advanced_certificate_teaching];
274 [class="", fontsize=12, label=utter_information_theology];
275 [class="", fontsize=12, label=utter_information_university_fees];
276 [class="", fontsize=12, label=utter_information_banking_details];
277 [class="", fontsize=12, label=utter_information_free_software];
278 [class="", fontsize=12, label=utter_information_natural_and_agricultural_sciences];
279 [class="", fontsize=12, label=utter_library_services];
280 [class="", fontsize=12, label=utter_citing_referencing_plagiarism];
281 [class="", fontsize=12, label=utter_harvard_vs_apa];
282 [class="", fontsize=12, label=utter_efundi_endnote];
283 [class="", fontsize=12, label=utter_dalro];
284 [class="", fontsize=12, label=utter_reference_constitution];
285 [class="", fontsize=12, label=utter_endnote_trial];
286 [class="", fontsize=12, label=utter_reference_chapter];
287 [class="", fontsize=12, label=utter_harvard_referencing];
288 [class="", fontsize=12, label=utter_copyright];
289 [class="", fontsize=12, label=utter_latex_template];
290 [class="", fontsize=12, label=utter_plagiarism_declaration];
291 [class="", fontsize=12, label=utter_copy_book];
292 [class="", fontsize=12, label=utter_copyright_length];
293 [class="", fontsize=12, label=utter_referella];
294 [class="", fontsize=12, label=utter_apa_referencing];
295 [class="", fontsize=12, label=utter_nwu_law_referencing];
296 [class="", fontsize=12, label=utter_old_referencing_style];
297 [class="", fontsize=12, label=utter_start];
298 [class="", fontsize=12, label=utter_referella_videos];
300 [class="", fontsize=12, label=utter_find_referella];
301 [class="", fontsize=12, label=utter_find_referencing_guides];
302 [class="", fontsize=12, label=utter_print_referencing_guide];
303 [class="", fontsize=12, label=utter_using_harvard_reference_guide];
304 [class="", fontsize=12, label=utter_reference_picture];
305 [class="", fontsize=12, label=utter_reference_multiple_authors];
306 [class="", fontsize=12, label=utter_reference_journal_article];
307 [class="", fontsize=12, label=utter_reference_reviews];
308 [class="", fontsize=12, label=utter_welcome];
309 [class="", fontsize=12, label=utter_instruction];
310 [class="", fontsize=12, label=utter_example];
311 [class="", fontsize=12, label=utter_help];
312 [class="", fontsize=12, label=utter_options];
313 [class="", fontsize=12, label=utter_volume_issue];
314 [class="", fontsize=12, label=utter_plagiarism];
315 [class="", fontsize=12, label=utter_endnote];
316 [class="", fontsize=12, label=utter_endnote_more];
317 [class="", fontsize=12, label=utter_plagiarism_check];
318 [class="", fontsize=12, label=utter_endnote_bibliography];
319 [class="", fontsize=12, label=utter_endnote_export];
320 [class="", fontsize=12, label=utter_referencing_electronic_newspaper_article];
321 [class="", fontsize=12, label=utter_reference_anonymous];
322 [class="", fontsize=12, label=utter_book_online_training];
323 [class="", fontsize=12, label=utter_library_tab_missing];
325 [class="", fontsize=12, label=utter_reference_government];
326 [class="", fontsize=12, label=utter_reference_interview];
327 [class="", fontsize=12, label=utter_paraphrasing];
328 [class="", fontsize=12, label=utter_reference_book];
329 [class="", fontsize=12, label=utter_reference_chapter_collected_work];
330 [class="", fontsize=12, label=utter_reference_ebook];
331 [class="", fontsize=12, label=utter_reference_encyclopedia];
332 [class="", fontsize=12, label=utter_reference_dictionary];
333 [class="", fontsize=12, label=utter_reference_theses_dissertations];
334 [class="", fontsize=12, label=utter_global_contact_options];
335 [class="", fontsize=12, label=utter_reference_web_articles];
336 [class="", fontsize=12, label=utter_reference_blog];
337 [class="", fontsize=12, label=utter_reference_social_media_post];
338 [class="", fontsize=12, label=utter_reference_powerpoint_video_youtube_podcast];
339 [class="", fontsize=12, label=utter_reference_lecture_notes];
340 [class="", fontsize=12, label=utter_reference_conference_papers_proceedings];
341 [class="", fontsize=12, label=utter_reference_study_guide];
342 [class="", fontsize=12, label=utter_reference_religious_sources];
343 [class="", fontsize=12, label=utter_reference_classical_works];
344 [class="", fontsize=12, label=utter_reference_correspondance];
345 [class="", fontsize=12, label=utter_contact_librarians];
346 [class="", fontsize=12, label=utter_reference_patent_standards];
347 [class="", fontsize=12, label=utter_reference_musical_scores];
348 [class="", fontsize=12, label=utter_reference_dataset];
349 [class="", fontsize=12, label=utter_reference_unpublished];
350 [class="", fontsize=12, label=utter_reference_list];
351 [class="", fontsize=12, label=utter_text_reference];
352 [class="", fontsize=12, label=utter_quotations_text_reference];
353 [class="", fontsize=12, label=utter_quotations_indirect];
354 [class="", fontsize=12, label=utter_reference_secondary];
355 [class="", fontsize=12, label=utter_reference_arrange];
356 [class="", fontsize=12, label=utter_reference_natural_sciences];
357 [class="", fontsize=12, label=utter_contact_faculty];
358 [class="", fontsize=12, label="..."];
359 [class="", fontsize=12, label=utter_goodbye];
361 [class="", fontsize=12, label=utter_iamabot];
363 [class="", fontsize=12, label=utter_please_rephrase];
364 [class=intent, fillcolor=lightblue, label="how do I use the chicago referencing style", shape=rect, style=filled];
365 [class=intent, fillcolor=lightblue, label="who are the publishers of fateful triangle: The united states, Israel and Palestinians", shape=rect, style=filled];
366 [class=intent, fillcolor=lightblue, label="where do I to put books away that I have used", shape=rect, style=filled];
367 [class=intent, fillcolor=lightblue, label="three boolean operators", shape=rect, style=filled];
368 [class=intent, fillcolor=lightblue, label="best search engine 2020", shape=rect, style=filled];
369 [class=intent, fillcolor=lightblue, label="gain access to database and library", shape=rect, style=filled];
370 [class=intent, fillcolor=lightblue, label="building music library", shape=rect, style=filled];
371 [class=intent, fillcolor=lightblue, label="theological library building", shape=rect, style=filled];
372 [class=intent, fillcolor=lightblue, label="in which building is the education library", shape=rect, style=filled];
373 [class=intent, fillcolor=lightblue, label="natural sciences library building", shape=rect, style=filled];
374 [class=intent, fillcolor=lightblue, label="contact office", shape=rect, style=filled];
375 [class=intent, fillcolor=lightblue, label="in which building is the mahikeng campus library", shape=rect, style=filled];
376 [class=intent, fillcolor=lightblue, label="in which building is the potchefstroom campus library", shape=rect, style=filled];
377 [class=intent, fillcolor=lightblue, label="in which building is the vaal campus library", shape=rect, style=filled];
378 [class=intent, fillcolor=lightblue, label="how do I request books from another NWU campus", shape=rect, style=filled];
379 [class=intent, fillcolor=lightblue, label="how much does it cost for binding, scanning and printing", shape=rect, style=filled];
380 [class=intent, fillcolor=lightblue, label="closing date for admission", shape=rect, style=filled];
381 [class=intent, fillcolor=lightblue, label="define OPAC", shape=rect, style=filled];
382 [class=intent, fillcolor=lightblue, label="define scopus", shape=rect, style=filled];
383 [class=intent, fillcolor=lightblue, label="former student transcript retrieval", shape=rect, style=filled];
384 [class=intent, fillcolor=lightblue, label="Dr Moyo contact details", shape=rect, style=filled];
385 [class=intent, fillcolor=lightblue, label="student finances and financial related systems", shape=rect, style=filled];
386 [class=intent, fillcolor=lightblue, label="Reaxys database", shape=rect, style=filled];
387 [class=intent, fillcolor=lightblue, label="lost and found library", shape=rect, style=filled];
388 [class=intent, fillcolor=lightblue, label="failed to acquire books online", shape=rect, style=filled];
389 [class=intent, fillcolor=lightblue, label="application and admissions office", shape=rect, style=filled];
390 [class=intent, fillcolor=lightblue, label="book appointment with librarian", shape=rect, style=filled];
391 [class=intent, fillcolor=lightblue, label="what is ashrae", shape=rect, style=filled];
392 [class=intent, fillcolor=lightblue, label="where can I find the constitution", shape=rect, style=filled];
393 [class=intent, fillcolor=lightblue, label="library cellphone rules", shape=rect, style=filled];
394 [class=intent, fillcolor=lightblue, label="how to find information", shape=rect, style=filled];
395 [class=intent, fillcolor=lightblue, label="how to log into an account as a NWU distance student", shape=rect, style=filled];
396 [class=intent, fillcolor=lightblue, label="language style guide", shape=rect, style=filled];
397 [class=intent, fillcolor=lightblue, label="submit assignment", shape=rect, style=filled];
398 [class=intent, fillcolor=lightblue, label="how do I log on to the library as a postgraduate distance learning student", shape=rect, style=filled];
399 [class=intent, fillcolor=lightblue, label="how to book a group study unit", shape=rect, style=filled];
400 [class=intent, fillcolor=lightblue, label="resetting eFundi password", shape=rect, style=filled];
401 [class=intent, fillcolor=lightblue, label="how do I update my eFundi email address", shape=rect, style=filled];
402 [class=intent, fillcolor=lightblue, label="locate modules eFundi", shape=rect, style=filled];
403 [class=intent, fillcolor=lightblue, label="how to use eFundi", shape=rect, style=filled];
404 [class=intent, fillcolor=lightblue, label="how do I deregister", shape=rect, style=filled];
405 [class=intent, fillcolor=lightblue, label="how can I get a library training session", shape=rect, style=filled];
406 [class=intent, fillcolor=lightblue, label="who are the programme leaders for foundation phase across the three campuses", shape=rect, style=filled];
407 [class=intent, fillcolor=lightblue, label="application statutes for prospective stident?", shape=rect, style=filled];
408 [class=intent, fillcolor=lightblue, label="journal publishing", shape=rect, style=filled];
409 [class=intent, fillcolor=lightblue, label="getting EndNote license key", shape=rect, style=filled];
410 [class=intent, fillcolor=lightblue, label="letter of recommendation", shape=rect, style=filled];
411 [class=intent, fillcolor=lightblue, label="textbook list access", shape=rect, style=filled];
412 [class=intent, fillcolor=lightblue, label="where can I buy books for my modules", shape=rect, style=filled];
413 [class=intent, fillcolor=lightblue, label="information on sources for law", shape=rect, style=filled];
414 [class=intent, fillcolor=lightblue, label="/information_sources_law", shape=rect, style=filled];
415 [class=intent, fillcolor=lightblue, label="/information_bursaries", shape=rect, style=filled];
416 [class=intent, fillcolor=lightblue, label="nwu manual", shape=rect, style=filled];
417 [class=intent, fillcolor=lightblue, label="contact books and beans coffee shop", shape=rect, style=filled];
418 [class=intent, fillcolor=lightblue, label="contact details international office?", shape=rect, style=filled];
419 [class=intent, fillcolor=lightblue, label="What is the contact information for the Astrovilla", shape=rect, style=filled];
420 [class=intent, fillcolor=lightblue, label="access prescibed textbooks", shape=rect, style=filled];
421 [class=intent, fillcolor=lightblue, label="how many books can one person borrow", shape=rect, style=filled];
422 [class=intent, fillcolor=lightblue, label="NSFAS accredited housing in potchefstroom", shape=rect, style=filled];
423 [class=intent, fillcolor=lightblue, label="where do I find my DIY password", shape=rect, style=filled];
424 [class=intent, fillcolor=lightblue, label="career center efundi", shape=rect, style=filled];
425 [class=intent, fillcolor=lightblue, label="accessing articles the university does not have", shape=rect, style=filled];
426 [class=intent, fillcolor=lightblue, label="contact information Christine Bronkhorst", shape=rect, style=filled];
427 [class=intent, fillcolor=lightblue, label="details about registration fee", shape=rect, style=filled];
428 [class=intent, fillcolor=lightblue, label="how do I get my resuts from previous years", shape=rect, style=filled];
429 [class=intent, fillcolor=lightblue, label="contact information for the university", shape=rect, style=filled];
430 [class=intent, fillcolor=lightblue, label="duration of the social work degree", shape=rect, style=filled];
431 [class=intent, fillcolor=lightblue, label="late application is still open", shape=rect, style=filled];
432 [class=intent, fillcolor=lightblue, label="application status clarification", shape=rect, style=filled];
433 [class=intent, fillcolor=lightblue, label="how can I sync my EndNote online account", shape=rect, style=filled];
434 [class=intent, fillcolor=lightblue, label="password for my ebsco", shape=rect, style=filled];
435 [class=intent, fillcolor=lightblue, label="registration new student efundi", shape=rect, style=filled];
436 [class=intent, fillcolor=lightblue, label="referencing webcast session", shape=rect, style=filled];
437 [class=intent, fillcolor=lightblue, label="library staff information", shape=rect, style=filled];
438 [class=intent, fillcolor=lightblue, label="case searching", shape=rect, style=filled];
439 [class=intent, fillcolor=lightblue, label="can first year students make use of interlibrary loans", shape=rect, style=filled];
440 [class=intent, fillcolor=lightblue, label="contact information study enquiries", shape=rect, style=filled];
441 [class=intent, fillcolor=lightblue, label="what is CAS authentication", shape=rect, style=filled];
442 [class=intent, fillcolor=lightblue, label="finding an act", shape=rect, style=filled];
443 [class=intent, fillcolor=lightblue, label="where can I find my university account", shape=rect, style=filled];
444 [class=intent, fillcolor=lightblue, label="how can I switch my nwu campuses", shape=rect, style=filled];
445 [class=intent, fillcolor=lightblue, label="how to calculate APS score", shape=rect, style=filled];
446 [class=intent, fillcolor=lightblue, label="can the encyclopedia be borrowed", shape=rect, style=filled];
447 [class=intent, fillcolor=lightblue, label="how can I donate books to the library", shape=rect, style=filled];
448 [class=intent, fillcolor=lightblue, label="IT helpdesk", shape=rect, style=filled];
449 [class=intent, fillcolor=lightblue, label="how to make table of contents", shape=rect, style=filled];
450 [class=intent, fillcolor=lightblue, label="linking my ORCiD to the NWU website", shape=rect, style=filled];
451 [class=intent, fillcolor=lightblue, label="general contact information", shape=rect, style=filled];
452 [class=intent, fillcolor=lightblue, label="catalogue for books available at Vaal Triangle", shape=rect, style=filled];
453 [class=intent, fillcolor=lightblue, label="finding which library subscribes to a specific journal", shape=rect, style=filled];
454 [class=intent, fillcolor=lightblue, label="filtering ebooks in catalogue search", shape=rect, style=filled];
455 [class=intent, fillcolor=lightblue, label="information on spaces and libraries", shape=rect, style=filled];
456 [class=intent, fillcolor=lightblue, label="graduate student access to library resources", shape=rect, style=filled];
457 [class=intent, fillcolor=lightblue, label="findingd books via search engine", shape=rect, style=filled];
458 [class=intent, fillcolor=lightblue, label=Britannica, shape=rect, style=filled];
459 [class=intent, fillcolor=lightblue, label="dropbox upload document", shape=rect, style=filled];
460 [class=intent, fillcolor=lightblue, label="senior administrator", shape=rect, style=filled];
461 [class=intent, fillcolor=lightblue, label="research commons information", shape=rect, style=filled];
462 [class=intent, fillcolor=lightblue, label="where is my academic record", shape=rect, style=filled];
463 [class=intent, fillcolor=lightblue, label="does the library open on public holidays", shape=rect, style=filled];
464 [class=intent, fillcolor=lightblue, label="formatting an assignment", shape=rect, style=filled];
465 [class=intent, fillcolor=lightblue, label="planning search strategy", shape=rect, style=filled];
466 [class=intent, fillcolor=lightblue, label="where can I get SA media", shape=rect, style=filled];
467 [class=intent, fillcolor=lightblue, label="checking book status", shape=rect, style=filled];
468 [class=intent, fillcolor=lightblue, label="looking for an author of the study guide we were supplied", shape=rect, style=filled];
469 [class=intent, fillcolor=lightblue, label="how do I unblock my student card in order to enter campus", shape=rect, style=filled];
470 [class=intent, fillcolor=lightblue, label="acquire Prezi", shape=rect, style=filled];
471 [class=intent, fillcolor=lightblue, label="opening news paper articles", shape=rect, style=filled];
472 [class=intent, fillcolor=lightblue, label="connecting to NWU WIFI", shape=rect, style=filled];
473 [class=intent, fillcolor=lightblue, label="where can I get novels", shape=rect, style=filled];
474 [class=intent, fillcolor=lightblue, label="returning ebook", shape=rect, style=filled];
475 [class=intent, fillcolor=lightblue, label="how can I access law cases", shape=rect, style=filled];
476 [class=intent, fillcolor=lightblue, label="for what period can I keep a book", shape=rect, style=filled];
477 [class=intent, fillcolor=lightblue, label="cybersecurity information", shape=rect, style=filled];
478 [class=intent, fillcolor=lightblue, label="library closing time", shape=rect, style=filled];
479 [class=intent, fillcolor=lightblue, label="how can I borrow a book", shape=rect, style=filled];
480 [class=intent, fillcolor=lightblue, label="where can I find Norton", shape=rect, style=filled];
481 [class=intent, fillcolor=lightblue, label="/information_learn_theology", shape=rect, style=filled];
482 [class=intent, fillcolor=lightblue, label="coaching science diploma entry requirements", shape=rect, style=filled];
483 [class=intent, fillcolor=lightblue, label="reference Wikipedia", shape=rect, style=filled];
484 [class=intent, fillcolor=lightblue, label="change my studies?", shape=rect, style=filled];
485 [class=intent, fillcolor=lightblue, label="book a seminar room", shape=rect, style=filled];
486 [class=intent, fillcolor=lightblue, label="librarians available at Mahikeng campus", shape=rect, style=filled];
487 [class=intent, fillcolor=lightblue, label="eating in the library", shape=rect, style=filled];
488 [class=intent, fillcolor=lightblue, label="error accessing library", shape=rect, style=filled];
489 [class=intent, fillcolor=lightblue, label="can I do BCOM Accounting if am doing Accounting with maths literacy", shape=rect, style=filled];
490 [class=intent, fillcolor=lightblue, label="how to choose what to study", shape=rect, style=filled];
491 [class=intent, fillcolor=lightblue, label="how does the library function", shape=rect, style=filled];
492 [class=intent, fillcolor=lightblue, label="how can I register in order to access the question papers", shape=rect, style=filled];
493 [class=intent, fillcolor=lightblue, label="CTL (Centre for Teaching and Learning)", shape=rect, style=filled];
494 [class=intent, fillcolor=lightblue, label="uploading assignments on efundi", shape=rect, style=filled];
495 [class=intent, fillcolor=lightblue, label="can someone return my books for me", shape=rect, style=filled];
496 [class=intent, fillcolor=lightblue, label="where can I download my proof of registration", shape=rect, style=filled];
497 [class=intent, fillcolor=lightblue, label="where do I find the NWU template", shape=rect, style=filled];
498 [class=intent, fillcolor=lightblue, label="getting grammarly access code", shape=rect, style=filled];
499 [class=intent, fillcolor=lightblue, label="test and quizzes for ALDE ALDA", shape=rect, style=filled];
500 [class=intent, fillcolor=lightblue, label="May I kindly get the Juta login details", shape=rect, style=filled];
501 [class=intent, fillcolor=lightblue, label="I have an organisation as author, but EndNote displays it all wrong in my Word document", shape=rect, style=filled];
502 [class=intent, fillcolor=lightblue, label="IT services", shape=rect, style=filled];
503 [class=intent, fillcolor=lightblue, label=WGSN, shape=rect, style=filled];
504 [class=intent, fillcolor=lightblue, label="where can I find education research resources or themes", shape=rect, style=filled];
505 [class=intent, fillcolor=lightblue, label="where can I find my university number", shape=rect, style=filled];
506 [class=intent, fillcolor=lightblue, label="where is my exam schedule", shape=rect, style=filled];
507 [class=intent, fillcolor=lightblue, label="how can I access gradution information", shape=rect, style=filled];
508 [class=intent, fillcolor=lightblue, label="importing NWU Harvard style in EndNote", shape=rect, style=filled];
509 [class=intent, fillcolor=lightblue, label="where can I access old authorities", shape=rect, style=filled];
510 [class=intent, fillcolor=lightblue, label="ACT registration form", shape=rect, style=filled];
511 [class=intent, fillcolor=lightblue, label="where can I get Groupwise", shape=rect, style=filled];
512 [class=intent, fillcolor=lightblue, label="downloading Engineering final year projects", shape=rect, style=filled];
513 [class=intent, fillcolor=lightblue, label="writing a CV", shape=rect, style=filled];
514 [class=intent, fillcolor=lightblue, label="lost books fees", shape=rect, style=filled];
515 [class=intent, fillcolor=lightblue, label="I want to see If I can get NSFAS", shape=rect, style=filled];
516 [class=intent, fillcolor=lightblue, label="AGLE curriculum", shape=rect, style=filled];
517 [class=intent, fillcolor=lightblue, label="contact engineering", shape=rect, style=filled];
518 [class=intent, fillcolor=lightblue, label="I need registration forms for Bed degree 2021", shape=rect, style=filled];
519 [class=intent, fillcolor=lightblue, label="nwu academic calender", shape=rect, style=filled];
520 [class=intent, fillcolor=lightblue, label="how can I get multingual languages dictionary", shape=rect, style=filled];
521 [class=intent, fillcolor=lightblue, label="where can I get sources", shape=rect, style=filled];
522 [class=intent, fillcolor=lightblue, label="how to calculate module credit", shape=rect, style=filled];
523 [class=intent, fillcolor=lightblue, label="how to make an application to the university", shape=rect, style=filled];
524 [class=intent, fillcolor=lightblue, label="I get an error when I try to generate green token", shape=rect, style=filled];
525 [class=intent, fillcolor=lightblue, label="download EndNote", shape=rect, style=filled];
526 [class=intent, fillcolor=lightblue, label="where can I find my library PIN", shape=rect, style=filled];
527 [class=intent, fillcolor=lightblue, label="where can I access distance learning courses", shape=rect, style=filled];
528 [class=intent, fillcolor=lightblue, label="contact education department", shape=rect, style=filled];
529 [class=intent, fillcolor=lightblue, label="how do I download study guides for my modules", shape=rect, style=filled];
530 [class=intent, fillcolor=lightblue, label="Where can I find the Student 360-Service for Distance Learners", shape=rect, style=filled];
531 [class=intent, fillcolor=lightblue, label="/most_asked_questions", shape=rect, style=filled];
532 [class=intent, fillcolor=lightblue, label="/information_bookings_and_training_events", shape=rect, style=filled];
533 [class=intent, fillcolor=lightblue, label="checking printing credits", shape=rect, style=filled];
534 [class=intent, fillcolor=lightblue, label="/printing_binding_scanning_services", shape=rect, style=filled];
535 [class=intent, fillcolor=lightblue, label="are internationally published books available in the library catalogue", shape=rect, style=filled];
536 [class=intent, fillcolor=lightblue, label="what password do I use to have access to the library", shape=rect, style=filled];
537 [class=intent, fillcolor=lightblue, label="which option on the Library Catalogue will you select to see if the library subscribes to a specific journal", shape=rect, style=filled];
538 [class=intent, fillcolor=lightblue, label="how to download a book from the library", shape=rect, style=filled];
539 [class=intent, fillcolor=lightblue, label="how can I contact economic and management sciences department", shape=rect, style=filled];
540 [class=intent, fillcolor=lightblue, label="memorandums for past exam papers", shape=rect, style=filled];
541 [class=intent, fillcolor=lightblue, label="where can I download past exam papers", shape=rect, style=filled];
542 [class=intent, fillcolor=lightblue, label="what is EDS, and how does it differ from the library catalogue", shape=rect, style=filled];
543 [class=intent, fillcolor=lightblue, label="/database", shape=rect, style=filled];
544 [class=intent, fillcolor=lightblue, label="I would like to contact the Turnitin administrator for Potchefstroom", shape=rect, style=filled];
545 [class=intent, fillcolor=lightblue, label="/efundi", shape=rect, style=filled];
546 [class=intent, fillcolor=lightblue, label="resetting my student password", shape=rect, style=filled];
547 [class=intent, fillcolor=lightblue, label="where can I book an appointment in the writing lab", shape=rect, style=filled];
548 [class=intent, fillcolor=lightblue, label="what are the ethical requirements for postgraduate studies", shape=rect, style=filled];
549 [class=intent, fillcolor=lightblue, label="creating an ORCiD account", shape=rect, style=filled];
550 [class=intent, fillcolor=lightblue, label="contact information business", shape=rect, style=filled];
551 [class=intent, fillcolor=lightblue, label="how do I search for my ORCiD number", shape=rect, style=filled];
552 [class=intent, fillcolor=lightblue, label="/research", shape=rect, style=filled];
553 [class=intent, fillcolor=lightblue, label="/find_information", shape=rect, style=filled];
554 [class=intent, fillcolor=lightblue, label="/libguides", shape=rect, style=filled];
555 [class=intent, fillcolor=lightblue, label="what are libguide", shape=rect, style=filled];
556 [class=intent, fillcolor=lightblue, label="/about_the_library", shape=rect, style=filled];
557 [class=intent, fillcolor=lightblue, label="postgraduate application", shape=rect, style=filled];
558 [class=intent, fillcolor=lightblue, label="where can I find campus maps", shape=rect, style=filled];
559 [class=intent, fillcolor=lightblue, label="where can I find the Prospectus", shape=rect, style=filled];
560 [class=intent, fillcolor=lightblue, label="/about_the_nwu", shape=rect, style=filled];
561 [class=intent, fillcolor=lightblue, label="call health sciences", shape=rect, style=filled];
562 [class=intent, fillcolor=lightblue, label="/loan_services", shape=rect, style=filled];
563 [class=intent, fillcolor=lightblue, label="fine for a late book", shape=rect, style=filled];
564 [class=intent, fillcolor=lightblue, label="/library_homepage", shape=rect, style=filled];
565 [class=intent, fillcolor=lightblue, label="/information_best_search_engine", shape=rect, style=filled];
566 [class=intent, fillcolor=lightblue, label="Dewey Decimal Classification System", shape=rect, style=filled];
567 [class=intent, fillcolor=lightblue, label="searching for course specific books", shape=rect, style=filled];
568 [class=intent, fillcolor=lightblue, label="where can I find where to stay", shape=rect, style=filled];
569 [class=intent, fillcolor=lightblue, label="which library do I use as a researcher or postgraduate student", shape=rect, style=filled];
570 [class=intent, fillcolor=lightblue, label="can dictionaries be borrowed", shape=rect, style=filled];
571 [class=intent, fillcolor=lightblue, label="define LibAnswers", shape=rect, style=filled];
572 [class=intent, fillcolor=lightblue, label="health humanities", shape=rect, style=filled];
573 [class=intent, fillcolor=lightblue, label="are they language practitioners in South Africa", shape=rect, style=filled];
574 [class=intent, fillcolor=lightblue, label="where can I create a EBSCOhost account", shape=rect, style=filled];
575 [class=intent, fillcolor=lightblue, label="binding thesis application form", shape=rect, style=filled];
576 [class=intent, fillcolor=lightblue, label="binding final copies for submission", shape=rect, style=filled];
577 [class=intent, fillcolor=lightblue, label="binding services", shape=rect, style=filled];
578 [class=intent, fillcolor=lightblue, label="fix EndNote inserting wrong reference", shape=rect, style=filled];
579 [class=intent, fillcolor=lightblue, label="calculating my H-index", shape=rect, style=filled];
580 [class=intent, fillcolor=lightblue, label="chemistry and computer science modules", shape=rect, style=filled];
581 [class=intent, fillcolor=lightblue, label="how do I get books for my modules", shape=rect, style=filled];
582 [class=intent, fillcolor=lightblue, label="getting error using DIY service", shape=rect, style=filled];
583 [class=intent, fillcolor=lightblue, label="contact law", shape=rect, style=filled];
584 [class=intent, fillcolor=lightblue, label="submitting assignment distance learning student", shape=rect, style=filled];
585 [class=intent, fillcolor=lightblue, label="did you receive my assignment", shape=rect, style=filled];
586 [class=intent, fillcolor=lightblue, label="How can I access Google Scholar through the Library", shape=rect, style=filled];
587 [class=intent, fillcolor=lightblue, label="how do I read eBooks online", shape=rect, style=filled];
588 [class=intent, fillcolor=lightblue, label="do you courier books or acticles to students", shape=rect, style=filled];
589 [class=intent, fillcolor=lightblue, label="where can I find directions to the Libraries", shape=rect, style=filled];
590 [class=intent, fillcolor=lightblue, label="where can I find they University Yearbooks", shape=rect, style=filled];
591 [class=intent, fillcolor=lightblue, label="Where can I find online dictionaries and encyclopedias", shape=rect, style=filled];
592 [class=intent, fillcolor=lightblue, label="/information_course_reserves", shape=rect, style=filled];
593 [class=intent, fillcolor=lightblue, label="where do I find more info regarding the Advanced Certificate in Teaching", shape=rect, style=filled];
594 [class=intent, fillcolor=lightblue, label="health theology", shape=rect, style=filled];
595 [class=intent, fillcolor=lightblue, label="What are the Universities fees", shape=rect, style=filled];
596 [class=intent, fillcolor=lightblue, label="updating banking details", shape=rect, style=filled];
597 [class=intent, fillcolor=lightblue, label="where can I find free software like the Spellchecker or Office", shape=rect, style=filled];
598 [class=intent, fillcolor=lightblue, label="health natural sciences", shape=rect, style=filled];
599 [class=intent, fillcolor=lightblue, label="what are the library services", shape=rect, style=filled];
600 [class=intent, fillcolor=lightblue, label=citing, shape=rect, style=filled];
601 [class=intent, fillcolor=lightblue, label="Harvard and APA referencing differences", shape=rect, style=filled];
602 [class=intent, fillcolor=lightblue, label="I need access to the Library tab on eFundi to download EndNote", shape=rect, style=filled];
603 [class=intent, fillcolor=lightblue, label="How can I access the NWU DALRO Copyright Reporting System", shape=rect, style=filled];
604 [class=intent, fillcolor=lightblue, label="reference the Constitution of South Africa", shape=rect, style=filled];
605 [class=intent, fillcolor=lightblue, label="Endnote licenced version", shape=rect, style=filled];
606 [class=intent, fillcolor=lightblue, label="how do I reference a chapter in a collected work", shape=rect, style=filled];
607 [class=intent, fillcolor=lightblue, label="what is the NWU Harvard Referencing style", shape=rect, style=filled];
608 [class=intent, fillcolor=lightblue, label="where do I find information about copyright", shape=rect, style=filled];
609 [class=intent, fillcolor=lightblue, label="do you have a Postgraduate LaTeX Word template", shape=rect, style=filled];
610 [class=intent, fillcolor=lightblue, label="download plagiarism declaration form", shape=rect, style=filled];
611 [class=intent, fillcolor=lightblue, label="what percentage of a book am I allowed to copy", shape=rect, style=filled];
612 [class=intent, fillcolor=lightblue, label="how long does copyright last for music", shape=rect, style=filled];
613 [class=intent, fillcolor=lightblue, label="what is referella", shape=rect, style=filled];
614 [class=intent, fillcolor=lightblue, label="how do I use the APA Referencing Style", shape=rect, style=filled];
615 [class=intent, fillcolor=lightblue, label="information on NWU Law Referencing style", shape=rect, style=filled];
616 [class=intent, fillcolor=lightblue, label="where can I find the referencing guides that was used before 2020", shape=rect, style=filled];
617 [class=intent, fillcolor=lightblue, label=start, shape=rect, style=filled];
618 [class=intent, fillcolor=lightblue, label="where can I find the videos on referella", shape=rect, style=filled];
619 [class=intent, fillcolor=lightblue, label="where can I locate referella", shape=rect, style=filled];
620 [class=intent, fillcolor=lightblue, label="where can I locate the referencing guides", shape=rect, style=filled];
621 [class=intent, fillcolor=lightblue, label="I cannot print the reference guide", shape=rect, style=filled];
622 [class=intent, fillcolor=lightblue, label="how can I reference books using the Harvard Style", shape=rect, style=filled];
623 [class=intent, fillcolor=lightblue, label="how to reference a picture", shape=rect, style=filled];
624 [class=intent, fillcolor=lightblue, label="citing more than two authors", shape=rect, style=filled];
625 [class=intent, fillcolor=lightblue, label="reference a journal article", shape=rect, style=filled];
626 [class=intent, fillcolor=lightblue, label="reference review", shape=rect, style=filled];
627 [class=intent, fillcolor=lightblue, label=hello, shape=rect, style=filled];
628 [class=intent, fillcolor=lightblue, label="how do I indicate the volume and issue of a journal in the Harvard Law style", shape=rect, style=filled];
629 [class=intent, fillcolor=lightblue, label=plagiarism, shape=rect, style=filled];
630 [class=intent, fillcolor=lightblue, label="what is EndNote used for", shape=rect, style=filled];
631 [class=intent, fillcolor=lightblue, label="assignment plagiarism check", shape=rect, style=filled];
632 [class=intent, fillcolor=lightblue, label="create bibliography EndNote", shape=rect, style=filled];
633 [class=intent, fillcolor=lightblue, label="export reference from EndNote to Word", shape=rect, style=filled];
634 [class=intent, fillcolor=lightblue, label="references of electronic newspaper article", shape=rect, style=filled];
635 [class=intent, fillcolor=lightblue, label="how do I reference anonymous authors", shape=rect, style=filled];
636 [class=intent, fillcolor=lightblue, label="how to book an online training session for using the new PhD document for my final thesis", shape=rect, style=filled];
637 [class=intent, fillcolor=lightblue, label="can't acesss EndNote from eFundi", shape=rect, style=filled];
638 [class=intent, fillcolor=lightblue, label="cite government sources", shape=rect, style=filled];
639 [class=intent, fillcolor=lightblue, label="how do I cite an interview", shape=rect, style=filled];
640 [class=intent, fillcolor=lightblue, label="how do you define paraphrasing", shape=rect, style=filled];
641 [class=intent, fillcolor=lightblue, label="referencing a book", shape=rect, style=filled];
642 [class=intent, fillcolor=lightblue, label="referencing a chapter in a collected work", shape=rect, style=filled];
643 [class=intent, fillcolor=lightblue, label="how can I cite an ebook", shape=rect, style=filled];
644 [class=intent, fillcolor=lightblue, label="reference encyclopedia", shape=rect, style=filled];
645 [class=intent, fillcolor=lightblue, label="how do you reference a dictionary", shape=rect, style=filled];
646 [class=intent, fillcolor=lightblue, label="how do I reference theses and dissertations", shape=rect, style=filled];
647 [class=intent, fillcolor=lightblue, label="contact information", shape=rect, style=filled];
648 [class=intent, fillcolor=lightblue, label="how do I reference articles from the web", shape=rect, style=filled];
649 [class=intent, fillcolor=lightblue, label="citing a blog", shape=rect, style=filled];
650 [class=intent, fillcolor=lightblue, label="citing instagram post", shape=rect, style=filled];
651 [class=intent, fillcolor=lightblue, label="citing video", shape=rect, style=filled];
652 [class=intent, fillcolor=lightblue, label="referencing lecture's notes on eFundi", shape=rect, style=filled];
653 [class=intent, fillcolor=lightblue, label="/reference_conference_papers_proceedings", shape=rect, style=filled];
654 [class=intent, fillcolor=lightblue, label="citing study guides", shape=rect, style=filled];
655 [class=intent, fillcolor=lightblue, label="how do I reference bible commentaries", shape=rect, style=filled];
656 [class=intent, fillcolor=lightblue, label="citing classical works", shape=rect, style=filled];
657 [class=intent, fillcolor=lightblue, label="referencing personal correspondence like interviews, letters and email", shape=rect, style=filled];
658 [class=intent, fillcolor=lightblue, label="contact library", shape=rect, style=filled];
659 [class=intent, fillcolor=lightblue, label="How do I reference standards", shape=rect, style=filled];
660 [class=intent, fillcolor=lightblue, label="citing musical scores", shape=rect, style=filled];
661 [class=intent, fillcolor=lightblue, label="how do I reference a dataset", shape=rect, style=filled];
662 [class=intent, fillcolor=lightblue, label="how do I reference an unpublished work", shape=rect, style=filled];
663 [class=intent, fillcolor=lightblue, label="how do I set up a reference list", shape=rect, style=filled];
664 [class=intent, fillcolor=lightblue, label="How do I reference authors in text reference", shape=rect, style=filled];
665 [class=intent, fillcolor=lightblue, label="when do I use direct quotations in a text reference", shape=rect, style=filled];
666 [class=intent, fillcolor=lightblue, label="refencing secondary sources in a text reference", shape=rect, style=filled];
667 [class=intent, fillcolor=lightblue, label="/reference_arrange", shape=rect, style=filled];
668 [class=intent, fillcolor=lightblue, label="which referencing style does the faculty of Natural and Agricultural Sciences use", shape=rect, style=filled];
669 [class=intent, fillcolor=lightblue, label="I would like to contact a department", shape=rect, style=filled];
670 [class=intent, fillcolor=lightblue, label="am I allowed to print, copy and paste from eBooks", shape=rect, style=filled];
671 [class=intent, fillcolor=lightblue, label="I need help", shape=rect, style=filled];
672 [class=intent, fillcolor=lightblue, label="I need assistance", shape=rect, style=filled];
673 [class=intent, fillcolor=lightblue, label=halt, shape=rect, style=filled];
674 [class=intent, fillcolor=lightblue, label="do you have consciousness", shape=rect, style=filled];
675 [class=intent, fillcolor=lightblue, label="/nlu_fallback", shape=rect, style=filled];
0 -> 358 [class="", key=NONE, label=""];
0 -> 364 [class="", key=0];
0 -> 365 [class="", key=0];
0 -> 366 [class="", key=0];
0 -> 367 [class="", key=0];
0 -> 368 [class="", key=0];
0 -> 369 [class="", key=0];
0 -> 370 [class="", key=0];
0 -> 371 [class="", key=0];
0 -> 372 [class="", key=0];
0 -> 373 [class="", key=0];
0 -> 374 [class="", key=0];
0 -> 375 [class="", key=0];
0 -> 376 [class="", key=0];
0 -> 377 [class="", key=0];
0 -> 378 [class="", key=0];
0 -> 379 [class="", key=0];
0 -> 380 [class="", key=0];
0 -> 381 [class="", key=0];
0 -> 382 [class="", key=0];
0 -> 383 [class="", key=0];
0 -> 384 [class="", key=0];
0 -> 385 [class="", key=0];
0 -> 386 [class="", key=0];
0 -> 387 [class="", key=0];
0 -> 388 [class="", key=0];
0 -> 389 [class="", key=0];
0 -> 390 [class="", key=0];
0 -> 391 [class="", key=0];
0 -> 392 [class="", key=0];
0 -> 393 [class="", key=0];
0 -> 394 [class="", key=0];
0 -> 395 [class="", key=0];
0 -> 396 [class="", key=0];
0 -> 397 [class="", key=0];
0 -> 398 [class="", key=0];
0 -> 399 [class="", key=0];
0 -> 400 [class="", key=0];
0 -> 401 [class="", key=0];
0 -> 402 [class="", key=0];
0 -> 403 [class="", key=0];
0 -> 404 [class="", key=0];
0 -> 405 [class="", key=0];
0 -> 406 [class="", key=0];
0 -> 407 [class="", key=0];
0 -> 408 [class="", key=0];
0 -> 409 [class="", key=0];
0 -> 410 [class="", key=0];
0 -> 411 [class="", key=0];
0 -> 412 [class="", key=0];
0 -> 413 [class="", key=0];
0 -> 414 [class="", key=0];
0 -> 415 [class="", key=0];
0 -> 416 [class="", key=0];
0 -> 417 [class="", key=0];
0 -> 418 [class="", key=0];
0 -> 419 [class="", key=0];
0 -> 420 [class="", key=0];
0 -> 421 [class="", key=0];
0 -> 422 [class="", key=0];
0 -> 423 [class="", key=0];
0 -> 424 [class="", key=0];
0 -> 425 [class="", key=0];
0 -> 426 [class="", key=0];
0 -> 427 [class="", key=0];
0 -> 428 [class="", key=0];
0 -> 429 [class="", key=0];
0 -> 430 [class="", key=0];
0 -> 431 [class="", key=0];
0 -> 432 [class="", key=0];
0 -> 433 [class="", key=0];
0 -> 434 [class="", key=0];
0 -> 435 [class="", key=0];
0 -> 436 [class="", key=0];
0 -> 437 [class="", key=0];
0 -> 438 [class="", key=0];
0 -> 439 [class="", key=0];
0 -> 440 [class="", key=0];
0 -> 441 [class="", key=0];
0 -> 442 [class="", key=0];
0 -> 443 [class="", key=0];
0 -> 444 [class="", key=0];
0 -> 445 [class="", key=0];
0 -> 446 [class="", key=0];
0 -> 447 [class="", key=0];
0 -> 448 [class="", key=0];
0 -> 449 [class="", key=0];
0 -> 450 [class="", key=0];
0 -> 451 [class="", key=0];
0 -> 452 [class="", key=0];
0 -> 453 [class="", key=0];
0 -> 454 [class="", key=0];
0 -> 455 [class="", key=0];
0 -> 456 [class="", key=0];
0 -> 457 [class="", key=0];
0 -> 458 [class="", key=0];
0 -> 459 [class="", key=0];
0 -> 460 [class="", key=0];
0 -> 461 [class="", key=0];
0 -> 462 [class="", key=0];
0 -> 463 [class="", key=0];
0 -> 464 [class="", key=0];
0 -> 465 [class="", key=0];
0 -> 466 [class="", key=0];
0 -> 467 [class="", key=0];
0 -> 468 [class="", key=0];
0 -> 469 [class="", key=0];
0 -> 470 [class="", key=0];
0 -> 471 [class="", key=0];
0 -> 472 [class="", key=0];
0 -> 473 [class="", key=0];
0 -> 474 [class="", key=0];
0 -> 475 [class="", key=0];
0 -> 476 [class="", key=0];
0 -> 477 [class="", key=0];
0 -> 478 [class="", key=0];
0 -> 479 [class="", key=0];
0 -> 480 [class="", key=0];
0 -> 481 [class="", key=0];
0 -> 482 [class="", key=0];
0 -> 483 [class="", key=0];
0 -> 484 [class="", key=0];
0 -> 485 [class="", key=0];
0 -> 486 [class="", key=0];
0 -> 487 [class="", key=0];
0 -> 488 [class="", key=0];
0 -> 489 [class="", key=0];
0 -> 490 [class="", key=0];
0 -> 491 [class="", key=0];
0 -> 492 [class="", key=0];
0 -> 493 [class="", key=0];
0 -> 494 [class="", key=0];
0 -> 495 [class="", key=0];
0 -> 496 [class="", key=0];
0 -> 497 [class="", key=0];
0 -> 498 [class="", key=0];
0 -> 499 [class="", key=0];
0 -> 500 [class="", key=0];
0 -> 501 [class="", key=0];
0 -> 502 [class="", key=0];
0 -> 503 [class="", key=0];
0 -> 504 [class="", key=0];
0 -> 505 [class="", key=0];
0 -> 506 [class="", key=0];
0 -> 507 [class="", key=0];
0 -> 508 [class="", key=0];
0 -> 509 [class="", key=0];
0 -> 510 [class="", key=0];
0 -> 511 [class="", key=0];
0 -> 512 [class="", key=0];
0 -> 513 [class="", key=0];
0 -> 514 [class="", key=0];
0 -> 515 [class="", key=0];
0 -> 516 [class="", key=0];
0 -> 517 [class="", key=0];
0 -> 518 [class="", key=0];
0 -> 519 [class="", key=0];
0 -> 520 [class="", key=0];
0 -> 521 [class="", key=0];
0 -> 522 [class="", key=0];
0 -> 523 [class="", key=0];
0 -> 524 [class="", key=0];
0 -> 525 [class="", key=0];
0 -> 526 [class="", key=0];
0 -> 527 [class="", key=0];
0 -> 528 [class="", key=0];
0 -> 529 [class="", key=0];
0 -> 530 [class="", key=0];
0 -> 531 [class="", key=0];
0 -> 532 [class="", key=0];
0 -> 533 [class="", key=0];
0 -> 534 [class="", key=0];
0 -> 535 [class="", key=0];
0 -> 536 [class="", key=0];
0 -> 537 [class="", key=0];
0 -> 538 [class="", key=0];
0 -> 539 [class="", key=0];
0 -> 540 [class="", key=0];
0 -> 541 [class="", key=0];
0 -> 542 [class="", key=0];
0 -> 543 [class="", key=0];
0 -> 544 [class="", key=0];
0 -> 545 [class="", key=0];
0 -> 546 [class="", key=0];
0 -> 547 [class="", key=0];
0 -> 548 [class="", key=0];
0 -> 549 [class="", key=0];
0 -> 550 [class="", key=0];
0 -> 551 [class="", key=0];
0 -> 552 [class="", key=0];
0 -> 553 [class="", key=0];