-
Notifications
You must be signed in to change notification settings - Fork 2
/
d3-0515_7pt6_try.json
1994 lines (1994 loc) · 51.8 KB
/
d3-0515_7pt6_try.json
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
{
"nodes": [
{
"interests": [
"Python",
"Mobile Development",
"HTML5",
"Django",
"JavaScript",
"Data Analytics",
"Big Data",
"Machine Learning",
"CSS",
"Data Science",
"Programming Languages",
"Anime Conventions",
"Anime/Manga",
"Anime and Gaming"
],
"connect_to": 2,
"group": 1,
"name": "Stephen Donaldson",
"number_of_interests": 14
},
{
"interests": [
"Soapmaking",
"Herbalists",
"Needlework",
"Knitting",
"Job Search",
"Group Art",
"Herbal Formulary-How to Make Effective Herbal Teas",
"Indian Culture",
"Young Entrepreneur",
"Rasta",
"Toastmasters",
"New Moms",
"Working Moms",
"Mommy and Me",
"Playdates",
"Parents",
"Hip Mamas",
"Mommy and Me Music and Art Classes",
"Black Professionals",
"Black Women",
"Girls' Night Out",
"Girlfriends",
"Moms",
"Stay-at-Home Moms",
"Toddlers",
"Babies",
"Kids"
],
"connect_to": 2,
"group": 3,
"name": "Chantelle",
"number_of_interests": 27
},
{
"interests": [
"NYU",
"College Students",
"Internet Professionals",
"Big Data",
"Data Analytics",
"Data",
"Predictive Analytics",
"Data Mining",
"Data Visualization",
"Machine Learning",
"Asian Professionals",
"Python",
"Big Data Analytics",
"Hadoop",
"Paleo Diet",
"Women's Fitness",
"Chinese Culture"
],
"connect_to": 3,
"group": 1,
"name": "Shery",
"number_of_interests": 17
},
{
"interests": [
"Poetry",
"American Pit Bull Terrier",
"Girlfriends",
"Electronic Music",
"Rugby",
"Biohacking",
"Eating Paleo/Primal",
"Recreational Sports",
"Rock Music",
"Quantified Self",
"Primal Blueprint"
],
"connect_to": 9,
"group": 2,
"name": "Chi",
"number_of_interests": 11
},
{
"interests": [
"Animal Communication",
"Kayaking",
"Sea Kayaking",
"Photography Classes",
"Photoshop",
"Nature Photography",
"Bridge",
"Compassionate Communication"
],
"connect_to": 1,
"group": 4,
"name": "LoraKim",
"number_of_interests": 8
},
{
"interests": [
"Machine Learning",
"Predictive Analytics",
"Data Analytics",
"Data Mining",
"Big Data",
"Python",
"Data",
"Big Data Analytics",
"Hadoop",
"Data Visualization",
"NoSQL"
],
"connect_to": 3,
"group": 1,
"name": "Marcin Mejran",
"number_of_interests": 11
},
{
"interests": [
"Photography Workshop",
"Photography Classes",
"Self-Defense",
"Mixed Martial Arts",
"Photoshop",
"Science",
"Renaissance Faire",
"Medieval, Fantasy",
"Medieval Interests"
],
"group": 4,
"name": "Jessica",
"number_of_interests": 9
},
{
"interests": [
"Agnostic",
"Physics",
"Innovation",
"Science",
"Skeptics",
"Humanism",
"Freethinker",
"Critical Thinking",
"Desis",
"Poetry",
"Theology",
"Indian Culture",
"Boston Celtics",
"Chess",
"Table Tennis",
"Ping Pong",
"Teachers",
"Basketball"
],
"connect_to": 8,
"group": 2,
"name": "Yogesh",
"number_of_interests": 18
},
{
"interests": [
"Electronic Music",
"Photoshop",
"3D Artists",
"3D Animation",
"Real Estate",
"Illustration",
"English as a Second Language",
"Language Exchange",
"ESL practice",
"Game Development"
],
"connect_to": 0,
"group": 4,
"name": "Runyu",
"number_of_interests": 10
},
{
"interests": [
"American Pit Bull Terrier",
"Active Dogs",
"My Dog Votes",
"Photoshop",
"Animal Talk",
"Bull Terrier",
"Puggles"
],
"connect_to": 2,
"group": 4,
"name": "Paula",
"number_of_interests": 7
},
{
"interests": [
"Swing Dancing",
"Human Resources",
"Business Referral Networking",
"Data Mining",
"Predictive Analytics",
"Data Analytics",
"Big Data",
"Machine Learning",
"Business Intelligence",
"Beer",
"Venture Capital",
"Innovation",
"Big Data Analytics",
"R Project for Statistical Computing",
"Data Visualization",
"R Users Group",
"Green Building",
"Energy Efficiency",
"Green Entrepreneurs",
"Solar Energy",
"Data Analysis and Modeling"
],
"connect_to": 7,
"group": 1,
"name": "Lucas",
"number_of_interests": 21
},
{
"interests": [
"Spanish Language",
"Ghost Tracking",
"Government Grants",
"Paranormal",
"Harp",
"Keyboardist",
"Cantonese Language",
"Italian Language",
"Nannies and Au Pairs",
"Knitting",
"2600",
"ADHD",
"Africans",
"All Things Indie",
"Break Dancing",
"Cross Stitch",
"Dutch Language",
"E-Business Owners",
"Guitar",
"Herbalists",
"Hungarian Language",
"Indie",
"Indie Publishing",
"Indonesian Language",
"Latin Language",
"PC Building",
"Piano",
"Audio Engineering",
"Basketball",
"Swing Dancing",
"Singing",
"Work At Home",
"Scandinavian Languages",
"eBay Seller",
"Greek Language",
"Depression",
"Intentional Communities",
"Irish Language",
"Swahili",
"LGBT",
"Witches",
"Bipolar Disorder",
"Korean Language",
"Music Industry",
"Hindi Language"
],
"connect_to": 6,
"group": 3,
"name": "Tee",
"number_of_interests": 45
},
{
"interests": [
"Machine Learning",
"Big Data",
"Data Analytics",
"Data",
"Develop Clean and Clear Algorithms",
"NoSQL",
"Python",
"High Scalability Computing",
"Predictive Analytics",
"Data Mining",
"Social Media",
"Software Engineering",
"Computer Science",
"Mobile Development",
"Hadoop",
"MapReduce",
"Data Visualization",
"Big Data Analytics",
"Graph Theory",
"Graph Databases",
"Reggae",
"Conscious reggae",
"Green Entrepreneurs",
"Solar Energy"
],
"group": 1,
"name": "jason",
"number_of_interests": 24
},
{
"interests": [
"Digital Divide Network",
"Drupal",
"PostgreSQL",
"Free Software Foundation",
"PHP",
"MySQL",
"NetSquared",
"White Hat Hacking",
"Cybernetics",
"blogs",
"Wi-Fi",
"Information Architecture",
"Neuroscience",
"Bioethics",
"Cryonics",
"Millionaire",
"Education & Technology",
"Data Analytics",
"NoSQL",
"Predictive Analytics",
"Machine Learning",
"Web Analytics",
"Business Intelligence",
"Data Management",
"Data Mining",
"Science",
"Aviation",
"Space Exploration",
"Visualization",
"Interaction Design",
"Data Visualization",
"Visual Communication"
],
"connect_to": 6,
"group": 1,
"name": "Robert D. S.",
"number_of_interests": 32
},
{
"interests": [
"Herbalists",
"Zen Buddhism",
"Poetry"
],
"connect_to": 6,
"group": 2,
"name": "Richie",
"number_of_interests": 3
},
{
"interests": [
"Kayaking",
"Found Art",
"Figure Drawing",
"Birdwatching",
"Poetry",
"Collage",
"Art Museums",
"Arts & Entertainment",
"Local Activities",
"Group Art",
"Art Gallery Walks",
"Fine Art Photography",
"Art Galleries"
],
"connect_to": 7,
"group": 2,
"name": "nancy",
"number_of_interests": 13
},
{
"interests": [
"Java",
"Photoshop",
"Photography Workshop",
"Photograph in the Natural Scene",
"Fashion Photography",
"Amateur photography",
"Language Exchange",
"English as a Second Language",
"Italian Language",
"Portuguese Language",
"Spanish Language",
"Latino Culture",
"English Language",
"NYC Nightlife",
"English Tutor",
"ESL practice",
"Improve English faster and easier",
"Spanish & English Language Exchange",
"CCNA",
"CCNP, CCIE",
"computer networking",
"International Travel",
"Weekend Adventures"
],
"connect_to": 3,
"group": 4,
"name": "Ivan",
"number_of_interests": 23
},
{
"interests": [
"College Students",
"American History",
"Financial Education",
"Public Speaking",
"Psychology",
"Local Activities",
"Freethinker",
"Law of Attraction & Positive Thinking",
"NLP (Neuro-Linguistic Programming)",
"Lightworkers",
"Ethnic Food",
"Skiing",
"Weekend Adventures",
"Nature",
"Gardening",
"Adventure Racing",
"Winter Sports",
"Dodgeball",
"Community Service",
"Home and Garden",
"People Helping People",
"Locals & New in Town",
"Charity",
"Historic Preservation",
"Freedom",
"Photography Classes",
"Photoshop"
],
"connect_to": 5,
"group": 4,
"name": "Ari",
"number_of_interests": 27
},
{
"interests": [
"Tech Talks",
"Java",
"GPU",
"GPGPU",
"New York",
"GPU Programming",
"Nvidia",
"Multicore Computing",
"molecular computing",
"Evolution",
"Biology",
"Science",
"Physics",
"Astronomy",
"Math",
"Develop Clean and Clear Algorithms",
"Software Design",
"Genetics",
"Makerspaces",
"Biotechnology",
"H.264",
"Free in New York City",
"Arts & Entertainment",
"Education & Technology",
"Knowledge Sharing",
"High Performance Computing",
"CUDA: Compute Unified Device Architecture",
"Electronic Music",
"Experimental Electronic Music",
"Machine Learning",
"Predictive Analytics",
"Software Engineering",
"Google",
"Classical Music",
"Chamber Music"
],
"connect_to": 7,
"group": 1,
"name": "Scott Stensland",
"number_of_interests": 35
},
{
"interests": [
"Indian Music",
"Bollywood Films",
"Bhangra",
"Indian Culture",
"Couples",
"Tantra",
"Sexuality Awareness",
"Sacred Sexuality",
"Successful Relationships",
"NLP (Neuro-Linguistic Programming)",
"NLP Practice Group",
"Hypnosis",
"Life Transformation",
"Spiritual Growth",
"15 Minute Female Orgasm",
"Orgasmic Meditation",
"Polygamy",
"Hedonism",
"Kinky - Fetishes & BDSM",
"Erotic Exhibitionists",
"Polyamory and Open Relationships",
"Men and Sexuality",
"Mindfulness",
"Buddhism's Influence on Human Sexuality",
"Women's Empowerment",
"Women's Sexuality",
"Turned-On Woman's Movement",
"Intimacy",
"Knitting",
"Crocheting",
"Spinners",
"Fiber Arts",
"Yarn",
"Needlework",
"Business Development"
],
"connect_to": 1,
"group": 3,
"name": "Lisa",
"number_of_interests": 35
},
{
"interests": [
"Small Business Marketing Strategy",
"Internet Professionals",
"Backpacking",
"Rock Climbing",
"Skiing",
"Kayaking",
"Poetry",
"Novel Writing",
"Writing Workshops",
"Snowboarding"
],
"connect_to": 4,
"group": 2,
"name": "karen ",
"number_of_interests": 10
},
{
"interests": [
"Collaboration between Creative Minds",
"Improv",
"DIY (Do It Yourself)",
"Knitting",
"Shopping",
"Ballroom Dancing",
"College Alumni",
"Cocktails",
"Drinking",
"Pubs and Bars",
"Game Design",
"Gay Professionals",
"Goth",
"LGBT",
"Open Relationships",
"Seniors",
"Asians",
"Brazilian Culture",
"Chinese Culture",
"Spanish Language",
"Local Politics",
"Social Justice",
"House Music",
"Singing",
"Auto Racing",
"Cruises"
],
"connect_to": 0,
"group": 3,
"name": "Shijie Yu",
"number_of_interests": 26
},
{
"interests": [
"Crocheting",
"Handmade Crafts",
"Billiards",
"Dance Fitness",
"Outdoor Adventures",
"Chess",
"Collaboration between Creative Minds",
"Online Gaming",
"Tennis",
"Sketching",
"Knitting"
],
"connect_to": 1,
"group": 3,
"name": "Christopher",
"number_of_interests": 11
},
{
"interests": [
"Knitting",
"My Little Pony",
"My Little Pony : Friendship Is Magic",
"MLP",
"Bronies",
"Pubs and Bars"
],
"connect_to": 3,
"group": 3,
"name": "Haehyun",
"number_of_interests": 6
},
{
"interests": [
"Red Hat Society",
"Seniors",
"Writer's Block",
"Baby Boomers",
"Lunch",
"Fleamarkets",
"Garage Sale",
"Thrift Shoppers",
"Bargain Shopping",
"Empty Nest",
"Paranormal Romance",
"Moms",
"Network Marketing",
"Monopoly",
"Jazz",
"Fashionista",
"Progressive Christian",
"Writing Workshops",
"Creative Circle",
"Clothing Swap",
"Fiction",
"Alcohol-Free",
"Foodies Over 40",
"Shopping",
"Relationship Advice",
"Ballroom Dancing",
"Foreign Films",
"Poetry",
"Painting"
],
"connect_to": 2,
"group": 2,
"name": "Pauline",
"number_of_interests": 29
},
{
"interests": [
"Voice Acting",
"Rock Music",
"Heavy Metal",
"Friendship and Interesting Discussions",
"Bartending",
"Kayaking",
"Beer Lovers",
"Television",
"Photoshop",
"New Media",
"Film and Video Production",
"TV Jobs",
"Media Jobs",
"TV Media Careers",
"Broadcasting & Cable jobs",
"Media"
],
"connect_to": 4,
"group": 4,
"name": "Jessica Torrico",
"number_of_interests": 16
},
{
"interests": [
"Poetry",
"Singing",
"Entertainment Industry",
"Digital Video",
"Film and Video Production",
"Motorcycle Touring",
"Bikers that like to ride.",
"Motorcycle Riding",
"Female Bikers",
"Cruiser Bikes",
"Sport Bikes, Street Bikes, Motorcycle Meetups",
"Girls having fun",
"Girls' Night Out",
"Songwriting"
],
"connect_to": 3,
"group": 2,
"name": "Amaretta Chantale",
"number_of_interests": 14
},
{
"interests": [
"Literature",
"Fantasy Writing",
"Wiccan",
"Magick",
"Pagan",
"Goddess",
"Occult",
"Witches",
"Knitting",
"Coffee/Tea While Knitting",
"Crocheting",
"Mythology",
"Fantasy literature",
"Game of Thrones",
"Tarot",
"Paranormal",
"Steampunk",
"Comics and Novels",
"Live Action Role Playing",
"Horror Films",
"Reiki",
"Guided Meditation",
"Personal Development"
],
"group": 3,
"name": "Lauren",
"number_of_interests": 23
}
],
"links": [
{
"source": 0,
"state": 1,
"target": 18,
"value": 70.0,
"common_interest": [
"Machine Learning"
]
},
{
"source": 0,
"state": 1,
"target": 2,
"value": 18.0,
"common_interest": [
"Python",
"Data Analytics",
"Big Data",
"Machine Learning"
]
},
{
"source": 0,
"state": 1,
"target": 12,
"value": 14.0,
"common_interest": [
"Python",
"Mobile Development",
"Data Analytics",
"Big Data",
"Machine Learning"
]
},
{
"source": 1,
"state": 3,
"target": 22,
"value": 70.0,
"common_interest": [
"Knitting"
]
},
{
"source": 1,
"state": 3,
"target": 19,
"value": 24.0,
"common_interest": [
"Needlework",
"Knitting",
"Indian Culture"
]
},
{
"source": 1,
"state": 3,
"target": 21,
"value": 70.0,
"common_interest": [
"Knitting"
]
},
{
"source": 2,
"state": 1,
"target": 12,
"value": 7.0,
"common_interest": [
"Big Data",
"Data Analytics",
"Data",
"Predictive Analytics",
"Data Mining",
"Data Visualization",
"Machine Learning",
"Python",
"Big Data Analytics",
"Hadoop"
]
},
{
"source": 2,
"state": 1,
"target": 20,
"value": 70.0,
"common_interest": [
"Internet Professionals"
]
},
{
"source": 2,
"state": 1,
"target": 21,
"value": 70.0,
"common_interest": [
"Chinese Culture"
]
},
{
"source": 2,
"state": 1,
"target": 17,
"value": 70.0,
"common_interest": [
"College Students"
]
},
{
"source": 3,
"state": 2,
"target": 14,
"value": 70.0,
"common_interest": [
"Poetry"
]
},
{
"source": 3,
"state": 2,
"target": 15,
"value": 70.0,
"common_interest": [
"Poetry"
]
},
{
"source": 3,
"state": 2,
"target": 7,
"value": 70.0,
"common_interest": [
"Poetry"
]
},
{
"source": 3,
"state": 2,
"target": 20,
"value": 70.0,
"common_interest": [
"Poetry"
]
},
{
"source": 3,
"state": 2,
"target": 24,
"value": 70.0,
"common_interest": [
"Poetry"
]
},
{
"source": 3,
"state": 2,
"target": 26,
"value": 70.0,
"common_interest": [
"Poetry"
]
},
{
"source": 3,
"state": 2,
"target": 1,
"value": 70.0,
"common_interest": [
"Girlfriends"
]
},
{
"source": 3,
"state": 2,
"target": 25,
"value": 70.0,
"common_interest": [
"Rock Music"
]
},
{
"source": 3,
"state": 2,
"target": 9,
"value": 70.0,
"common_interest": [
"American Pit Bull Terrier"
]
},
{
"source": 3,
"state": 2,
"target": 8,
"value": 70.0,
"common_interest": [
"Electronic Music"
]
},
{
"source": 4,
"state": 4,
"target": 8,
"value": 70.0,
"common_interest": [
"Photoshop"
]
},
{
"source": 4,
"state": 4,
"target": 6,
"value": 35.0,
"common_interest": [
"Photography Classes",
"Photoshop"
]
},
{
"source": 5,
"state": 1,
"target": 0,
"value": 18.0,
"common_interest": [
"Machine Learning",
"Data Analytics",
"Big Data",
"Python"
]
},
{
"source": 5,
"state": 1,
"target": 18,
"value": 35.0,
"common_interest": [
"Machine Learning",
"Predictive Analytics"
]
},
{
"source": 5,
"state": 1,
"target": 2,
"value": 7.0,
"common_interest": [
"Machine Learning",
"Predictive Analytics",
"Data Analytics",
"Data Mining",
"Big Data",