-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscoringData.csv
We can't make this file beautiful and searchable because it's too large.
4845 lines (4845 loc) · 910 KB
/
scoringData.csv
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
"id","performer","song","genre","track_duration","track_explicit","danceability","energy","key","loudness","mode","speechiness","acousticness","instrumentalness","liveness","valence","tempo","time_signature"
50400,"Paul Davis","'65 Love Affair","['album rock', 'bubblegum pop', 'country rock', 'folk rock', 'mellow gold', 'new wave pop', 'soft rock', 'yacht rock']",219813,FALSE,0.647,0.686,2,-4.247,0,0.0274,0.432,6.19e-06,0.133,0.952,155.697,4
96747,"Luther Vandross","'Til My Baby Comes Home","['funk', 'motown', 'neo soul', 'new jack swing', 'quiet storm', 'r&b', 'soul', 'urban contemporary']",332226,FALSE,0.804,0.714,11,-6.714,0,0.183,0.0567,6.21e-06,0.0253,0.802,139.663,4
1824,"The Olympics","(Baby) Hully Gully","['doo-wop', 'rhythm and blues']",127829,FALSE,0.744,0.47,7,-10.295,1,0.035,0.659,0,0.256,0.908,116.233,4
67597,"Maxine Nightingale","(Bringing Out) The Girl In Me","['classic uk pop']",210973,FALSE,0.712,0.753,9,-7.666,1,0.0399,0.756,1.58e-06,0.169,0.953,116.178,4
86944,"The Chi-lites","(For God's Sake) Give More Power To The People","['chicago soul', 'classic soul', 'disco', 'funk', 'motown', 'quiet storm', 'soul', 'southern soul']",180133,FALSE,0.665,0.552,6,-10.177,1,0.0307,0.493,0.0272,0.421,0.899,96.889,4
85423,"Ramrods","(Ghost) Riders In The Sky","['classic garage rock']",156933,FALSE,0.442,0.717,9,-9.943,0,0.0395,0.518,0.262,0.184,0.376,120.914,4
5500,"Eddie Hodges","(Girls, Girls, Girls) Made To Love","[]",150666,FALSE,0.61,0.377,9,-9.805,1,0.0935,0.414,0,0.0734,0.519,178.06,4
82675,"Jay & The Americans","(He's) Raining In My Sunshine","['east coast hip hop', 'hip hop', 'pop rap', 'rap', 'southern hip hop']",195733,FALSE,0.478,0.298,2,-13.842,1,0.0342,0.74,1.11e-05,0.139,0.376,110.006,4
5926,"The Fleetwoods","(He's) The Great Impostor","['adult standards', 'brill building pop', 'doo-wop', 'rhythm and blues', 'rock-and-roll', 'vocal harmony group']",132101,FALSE,0.499,0.249,5,-11.793,1,0.0422,0.733,0,0.105,0.539,117.163,4
57666,"Shaquille O'Neal","(I Know I Got) Skillz","['new jersey rap']",263053,FALSE,0.801,0.875,7,-9.705,1,0.0995,0.00366,0.425,0.182,0.637,91.983,4
20580,"Tab Hunter","(I'll Be With You In) Apple Blossom Time","['deep adult standards']",130759,FALSE,0.585,0.45,8,-9.468,1,0.0357,0.856,4.92e-06,0.0777,0.627,130.16,4
522,"Jr. Walker & The All Stars","(I'm A) Road Runner","['outlaw country', 'redneck']",165946,FALSE,0.755,0.695,5,-6.56,1,0.0281,0.0533,0,0.295,0.851,125.256,4
97976,"Gene Chandler","(I'm Just A) Fool For You","['brill building pop', 'chicago soul', 'classic soul', 'doo-wop', 'motown', 'northern soul', 'rhythm and blues', 'soul', 'southern soul']",160853,FALSE,0.564,0.623,2,-9.553,1,0.0319,0.288,1.31e-05,0.0947,0.911,110.613,4
72316,"Glee Cast","(I've Had) The Time Of My Life","['glee club', 'hollywood', 'post-teen pop']",277560,FALSE,0.459,0.77,9,-5.996,1,0.0472,0.0765,0,0.0879,0.168,110.705,4
10025,"Barbara Mandrell","(If Loving You Is Wrong) I Don't Want To Be Right","['classic country pop', 'country', 'country gospel', 'country rock']",185013,FALSE,0.628,0.536,4,-10.905,0,0.0324,0.038,1.23e-05,0.115,0.704,74.862,4
32008,"The Drifters","(If You Cry) True Love, True Love","['adult standards', 'brill building pop', 'bubblegum pop', 'lounge', 'mellow gold', 'motown', 'rock-and-roll', 'rockabilly', 'soul']",141426,FALSE,0.511,0.236,0,-14.496,1,0.043,0.67,0,0.0953,0.196,141.222,4
43956,"Chuck Jackson","(It Never Happens) In Real Life","['classic soul', 'motown', 'northern soul', 'rhythm and blues', 'southern soul']",165440,FALSE,0.696,0.459,3,-8.464,1,0.0303,0.691,0.0331,0.138,0.849,119.069,4
22747,"Steven Tyler","(It) Feels So Good","['modern country rock']",211293,FALSE,0.738,0.952,6,-3.386,0,0.0515,0.0631,0,0.216,0.899,122,4
70541,"Van Halen","(oh) Pretty Woman","['album rock', 'classic rock', 'hard rock', 'metal', 'rock']",172670,FALSE,0.441,0.97,1,-2.1,0,0.0708,0.192,1.68e-06,0.312,0.5,128.289,4
30351,"Dean Martin","(Remember Me) I'm The One Who Loves You","['adult standards', 'easy listening', 'lounge']",145320,FALSE,0.475,0.507,1,-13.103,1,0.0372,0.646,1.03e-05,0.24,0.59,113.364,4
35946,"Cat Stevens","(Remember The Days Of The) Old Schoolyard","['british folk', 'classic rock', 'folk', 'folk rock', 'mellow gold', 'rock', 'roots rock', 'singer-songwriter', 'soft rock']",164826,FALSE,0.648,0.581,10,-8.684,1,0.0495,0.485,0,0.565,0.61,146.185,4
16484,"Roy Orbison","(Say) You're My Girl","['adult standards', 'brill building pop', 'bubblegum pop', 'folk rock', 'mellow gold', 'rock', 'rock-and-roll', 'rockabilly', 'soft rock']",165426,FALSE,0.424,0.657,0,-5.801,1,0.0289,0.727,0.000162,0.153,0.85,155.56,4
62308,"King Curtis & The Kingpins","(Sittin' On) The Dock Of The Bay","['jazz blues', 'jazz saxophone', 'soul', 'soul jazz']",161573,FALSE,0.729,0.125,2,-21.263,1,0.0318,0.266,0.662,0.101,0.65,104.93,4
20714,"The Ronettes","(The Best Part Of) Breakin' Up","['adult standards', 'brill building pop', 'classic girl group', 'motown']",184346,FALSE,0.49,0.729,2,-9.046,1,0.0481,0.403,0.00259,0.124,0.546,105.273,4
72999,"Lawrence Welk And His Orchestra","(Theme from) My Three Sons","[]",122600,FALSE,0.365,0.796,0,-5.441,1,0.0352,0.304,0.936,0.0562,0.954,80.468,4
91548,"Dionne Warwick","(There's) Always Something There To Remind Me","['adult standards', 'brill building pop', 'disco', 'lounge', 'mellow gold', 'motown', 'quiet storm', 'soft rock', 'soul', 'vocal jazz']",179506,FALSE,0.68,0.328,5,-13.69,1,0.0673,0.737,0,0.581,0.821,84.04,4
80663,"Jerry Butler & Brenda Lee Eager","(They Long To Be) Close To You","['beach music', 'chicago soul', 'classic soul', 'motown', 'philly soul', 'quiet storm', 'rhythm and blues', 'soul']",251906,FALSE,0.441,0.202,0,-16.412,1,0.0366,0.759,0.00017,0.28,0.326,108.105,3
83281,"Blues Magoos","(We Ain't Got) Nothin' Yet","['bubblegum pop', 'classic garage rock', 'freakbeat', 'protopunk', 'psychedelic rock']",135746,FALSE,0.417,0.876,10,-8.112,1,0.0499,0.584,0,0.1,0.858,148.399,4
49811,"Martha Reeves & The Vandellas","(We've Got) Honey Love","['adult standards', 'brill building pop', 'classic girl group', 'classic soul', 'disco', 'funk', 'motown', 'quiet storm', 'soul']",149133,FALSE,0.718,0.652,1,-7.51,1,0.154,0.492,0.000135,0.152,0.649,116.764,4
28584,"Gary Lewis And The Playboys","(You Don't Have To) Paint Me A Picture","['adult standards', 'brill building pop', 'british invasion', 'bubblegum pop', 'folk rock', 'merseybeat', 'rock-and-roll']",136440,FALSE,0.696,0.416,7,-9.518,1,0.0361,0.515,0,0.0407,0.963,81.623,4
13941,"Britney Spears","(You Drive Me) Crazy","['dance pop', 'pop', 'post-teen pop']",198066,FALSE,0.748,0.939,0,-4.288,0,0.0341,0.0534,0,0.32,0.96,104.001,4
79035,"Stephanie Mills","(You're Puttin') A Rush On Me","['disco', 'funk', 'motown', 'new jack swing', 'post-disco', 'quiet storm', 'r&b', 'soul', 'urban contemporary']",352933,FALSE,0.751,0.625,4,-11.256,0,0.055,0.0267,0.00702,0.0545,0.475,101.943,4
58246,"Beyonce Featuring Nicki Minaj Or Chimamanda Ngozi Adichie","***Flawless","['dance pop', 'pop', 'pop rap', 'r&b']",234413,TRUE,0.639,0.659,8,-7.273,1,0.215,0.241,8.33e-06,0.484,0.457,136.801,4
35712,"Mariah Carey Featuring Miguel","#Beautiful","['dance pop', 'pop', 'r&b', 'urban contemporary']",199866,FALSE,0.677,0.749,4,-5.405,1,0.0391,0.346,0,0.347,0.469,107.042,4
86810,"Coolio","1, 2, 3, 4 (Sumpin' New)","['g funk', 'gangster rap', 'hip hop', 'rap', 'west coast rap']",214306,FALSE,0.91,0.681,1,-9.639,0,0.153,0.288,0.00477,0.372,0.7,115.186,4
65300,"Metro Boomin Featuring 21 Savage","10 Freaky Girls","['hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",208293,TRUE,0.81,0.353,6,-9.931,0,0.31,0.588,0,0.102,0.0727,88.031,4
91118,"Mac Miller","100 Grandkids","['hip hop', 'pittsburgh rap', 'pop rap', 'rap']",278506,TRUE,0.735,0.749,10,-3.766,0,0.0874,0.371,0,0.47,0.373,93.718,4
9841,"Trippie Redd Featuring Juice WRLD","1400 / 999 Freestyle","['melodic rap', 'rap', 'trap']",175954,TRUE,0.825,0.572,6,-6.067,0,0.0864,0.0079,0,0.113,0.568,141.991,4
73160,"Skid Row","18 And Life","['album rock', 'glam metal', 'hard rock', 'metal', 'rock']",229960,FALSE,0.466,0.648,1,-11.101,0,0.028,0.0023,1.49e-05,0.112,0.305,90.435,4
84610,"G-Eazy Featuring Yo Gotti & YBN Nahmir","1942","['hip hop', 'indie pop rap', 'pop rap', 'rap']",213080,TRUE,0.817,0.646,4,-5.12,0,0.249,0.0152,0,0.125,0.835,162.898,4
96192,"J. Cole","1985 (Intro To The Fall Off)","['conscious hip hop', 'hip hop', 'nc hip hop', 'pop rap', 'rap']",190176,TRUE,0.678,0.648,2,-5.892,1,0.445,0.147,0,0.182,0.635,94.336,4
41565,"Bone Thugs-N-Harmony","1st Of Tha Month","['gangster rap', 'hip hop', 'pop rap', 'rap', 'southern hip hop']",314680,TRUE,0.729,0.581,5,-8.235,0,0.18,0.0777,3.81e-06,0.696,0.508,74.038,4
69277,"Kevin Gates","2 Phones","['baton rouge rap', 'pop rap', 'rap', 'southern hip hop', 'trap']",240000,TRUE,0.895,0.681,7,-5.267,0,0.358,0.157,0,0.189,0.554,121.918,4
54676,"Unk","2 Step","['atl hip hop', 'dirty south rap', 'gangster rap', 'pop rap', 'rap', 'southern hip hop', 'trap']",322933,TRUE,0.721,0.72,9,-6.145,0,0.192,0.0564,0,0.173,0.643,76.976,4
49817,"Lil Tjay","20/20","['brooklyn drill', 'melodic rap', 'nyc rap']",230448,TRUE,0.886,0.336,4,-12.779,1,0.239,0.557,0,0.0933,0.536,100.044,4
83397,"Taylor Swift","22","['pop', 'post-teen pop']",230133,FALSE,0.664,0.739,7,-6.539,1,0.0377,0.0027,0.00273,0.0742,0.703,104.012,4
17849,"T.I.","24's","['atl hip hop', 'dance pop', 'dirty south rap', 'gangster rap', 'hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",282906,TRUE,0.739,0.725,6,-4.301,1,0.203,0.227,0,0.0991,0.582,162.06,4
12573,"Future","31 Days","['atl hip hop', 'hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",240682,TRUE,0.875,0.644,1,-6.554,1,0.222,0.267,0,0.125,0.788,139.086,4
66465,"Ariana Grande","34+35","['dance pop', 'pop', 'post-teen pop']",173710,TRUE,0.83,0.585,0,-6.476,1,0.094,0.237,0,0.248,0.485,109.978,4
24589,"Ariana Grande Feat. Doja Cat & Megan Thee Stallion","34+35",NA,182437,TRUE,0.88,0.662,0,-5.766,1,0.304,0.205,0,0.227,0.726,109.988,4
68121,"Britney Spears","3","['dance pop', 'pop', 'post-teen pop']",213173,FALSE,0.697,0.709,5,-1.917,0,0.0455,0.0452,0,0.138,0.787,134.91,4
94377,"Avant","4 Minutes","['dance pop', 'deep pop r&b', 'hip pop', 'neo soul', 'new jack swing', 'pop rap', 'r&b', 'urban contemporary']",240320,FALSE,0.825,0.6,10,-5.378,1,0.162,0.091,0,0.123,0.607,119.956,4
51642,"Boyz II Men","4 Seasons Of Loneliness","['boy band', 'new jack swing', 'quiet storm', 'r&b', 'urban contemporary']",292400,FALSE,0.583,0.488,6,-10.494,1,0.0444,0.821,1.71e-05,0.115,0.191,98.497,4
57753,"The Beach Boys","409","['baroque pop', 'brill building pop', 'folk rock', 'psychedelic rock', 'rock', 'sunshine pop']",120866,FALSE,0.459,0.7,7,-4.751,1,0.0306,0.749,0,0.258,0.853,159.428,4
56743,"Logic","44 More","['conscious hip hop', 'dmv rap', 'hip hop', 'pop rap', 'rap']",188600,TRUE,0.829,0.589,1,-7.055,1,0.202,0.0635,0,0.113,0.233,139.971,4
37445,"Drake Featuring Sampha","4422","['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",186293,FALSE,0.621,0.247,11,-12.291,0,0.0393,0.499,0.0239,0.113,0.221,111.974,4
83520,"Brownstone","5 Miles To Empty","['girl group', 'hip pop', 'neo soul', 'new jack swing', 'quiet storm', 'r&b', 'urban contemporary']",225933,FALSE,0.671,0.733,3,-10.884,0,0.0283,5.01e-05,0.858,0.0745,0.803,123.577,4
71691,"Travis Scott","5% Tint","['rap']",196138,TRUE,0.712,0.481,4,-5.415,0,0.0487,0.173,0,0.241,0.062,140,4
41211,"Drake","6 God","['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",180666,TRUE,0.857,0.639,2,-8.622,1,0.128,0.0239,0,0.121,0.477,105.504,4
38886,"Beyonce Featuring The Weeknd","6 Inch","['dance pop', 'pop', 'pop rap', 'r&b']",260440,TRUE,0.516,0.637,6,-8.832,1,0.0632,0.0433,3.89e-06,0.11,0.324,138.011,4
49021,"Sneaker Pimps","6 Underground","['alternative dance', 'electronica', 'trip hop']",228840,FALSE,0.587,0.687,1,-8.635,0,0.0509,0.0281,0.14,0.121,0.402,169.938,4
78734,"Four Tops","7 Rooms Of Gloom","['adult standards', 'brill building pop', 'classic soul', 'disco', 'funk', 'mellow gold', 'motown', 'quiet storm', 'soft rock', 'soul']",154573,FALSE,0.452,0.694,3,-8.552,0,0.0399,0.246,0,0.267,0.874,89.262,4
57317,"Miley Cyrus","7 Things","['dance pop', 'pop', 'post-teen pop']",213453,FALSE,0.599,0.893,1,-4.404,0,0.0376,0.018,0,0.0772,0.591,107.033,4
41255,"Prince And The New Power Generation","7","['funk', 'funk rock', 'minneapolis sound', 'motown']",178266,FALSE,0.738,0.79,2,-8.308,1,0.036,0.0165,0.00282,0.296,0.573,135.148,4
68316,"Sugarhill Gang","8th Wonder","['east coast hip hop', 'funk', 'hip hop', 'hip house', 'new jersey rap', 'old school hip hop', 'rap']",446506,FALSE,0.871,0.937,1,-8.536,1,0.195,0.298,0,0.634,0.675,106.494,4
10804,"Dolly Parton","9 To 5","['classic country pop', 'country', 'country dawn']",162466,FALSE,0.554,0.783,6,-5.852,1,0.0457,0.416,1.54e-06,0.631,0.813,105.39,4
81813,"Wyclef Jean Featuring Mary J. Blige","911","['rap kreyol']",259333,FALSE,0.747,0.646,7,-9.185,1,0.191,0.273,3.7e-06,0.0931,0.73,87.011,4
10997,"Big Maybelle","96 Tears","['blues', 'jump blues', 'rhythm and blues', 'southern soul']",143280,FALSE,0.696,0.851,7,-5.385,1,0.0506,0.0236,0.0309,0.055,0.889,119.479,4
44530,"Tony Lucca","99 Problems","['acoustic pop', 'neo mellow']",143760,FALSE,0.613,0.81,2,-4.115,1,0.0593,0.0222,0,0.206,0.875,166.019,4
40528,"Sonny & Cher","A Beautiful Story","['deep groove house', 'deep house', 'disco house', 'house', 'uk dance']",172800,FALSE,0.474,0.328,7,-10.766,1,0.0338,0.737,0,0.128,0.602,159.172,3
70294,"Tyler, The Creator","A Boy Is A Gun","['hip hop', 'rap']",210253,TRUE,0.417,0.689,2,-8.302,0,0.178,0.575,0,0.496,0.505,79.568,4
5245,"Johnny Mathis","A Certain Smile","['adult standards', 'brill building pop', 'easy listening', 'mellow gold', 'vocal jazz']",168293,FALSE,0.233,0.337,5,-10.031,1,0.0307,0.854,1.53e-06,0.274,0.218,73.576,4
88999,"Bucky Covington","A Different World","['contemporary country', 'country', 'country road', 'modern country rock']",208573,FALSE,0.62,0.686,9,-5.027,1,0.0276,0.0327,0,0.101,0.464,128.962,4
11779,"Tom Petty","A Face In The Crowd","['album rock', 'classic rock', 'folk rock', 'heartland rock', 'mellow gold', 'pop rock', 'rock', 'roots rock', 'singer-songwriter', 'soft rock']",239306,FALSE,0.699,0.61,4,-13.372,0,0.0272,0.11,0.00188,0.06,0.755,105.568,4
71064,"Clay Walker","A Few Questions","['contemporary country', 'country', 'country road', 'country rock', 'modern country rock']",224258,FALSE,0.586,0.247,7,-13.624,1,0.0284,0.413,0.0063,0.0905,0.115,140.943,4
37505,"Andy Williams","A Fool Never Learns","['adult standards', 'brill building pop', 'easy listening', 'mellow gold']",121786,FALSE,0.542,0.706,5,-9.038,1,0.0318,0.778,1.21e-05,0.363,0.755,98.348,4
41582,"Bob Dylan","A Fool Such As I","['album rock', 'classic rock', 'folk', 'folk rock', 'mellow gold', 'rock', 'roots rock', 'singer-songwriter']",163053,FALSE,0.563,0.857,7,-7.618,1,0.0604,0.165,1.83e-05,0.134,0.687,118.29,4
58840,"The Smithereens","A Girl Like You","['alternative rock', 'dance rock', 'jangle pop', 'new jersey indie', 'new wave', 'new wave pop', 'power pop', 'roots rock']",282866,FALSE,0.657,0.828,1,-9.344,1,0.0283,0.0892,0,0.0575,0.908,123.799,4
52070,"The Young Rascals","A Girl Like You","['brill building pop', 'bubblegum pop', 'folk rock', 'mellow gold', 'merseybeat', 'motown', 'psychedelic rock', 'rock-and-roll']",170313,FALSE,0.496,0.548,0,-8.613,0,0.0462,0.637,0,0.0925,0.554,137.754,4
34148,"America","A Horse With No Name","['album rock', 'art rock', 'classic rock', 'country rock', 'folk', 'folk rock', 'mellow gold', 'rock', 'roots rock', 'singer-songwriter', 'soft rock']",252239,FALSE,0.654,0.506,11,-17.18,0,0.0535,0.686,0.0155,0.155,0.831,123.179,4
39784,"Dale Hawkins","A House, A Car And A Wedding Ring","['rock-and-roll', 'rockabilly']",131239,FALSE,0.489,0.252,0,-12.149,1,0.0348,0.743,2.32e-06,0.22,0.366,113.371,4
59812,"The Chi-lites","A Letter To Myself","['chicago soul', 'classic soul', 'disco', 'funk', 'motown', 'quiet storm', 'soul', 'southern soul']",335213,FALSE,0.512,0.477,9,-10.122,1,0.0327,0.678,4.06e-05,0.0936,0.502,130.633,4
20648,"Dr. Hook","A Little Bit More","['bubblegum pop', 'classic uk pop', 'country rock', 'folk rock', 'mellow gold', 'soft rock']",173960,FALSE,0.303,0.421,7,-13.148,1,0.0353,0.616,0,0.314,0.472,180.833,4
6821,"Garnet Mimms","A Little Bit Of Soap","['rhythm and blues', 'southern soul']",143560,FALSE,0.632,0.661,10,-10.575,1,0.0786,0.485,0,0.0462,0.899,133.624,4
33617,"Paul Davis","A Little Bit Of Soap","['album rock', 'bubblegum pop', 'country rock', 'folk rock', 'mellow gold', 'new wave pop', 'soft rock', 'yacht rock']",152760,FALSE,0.736,0.262,0,-13.234,1,0.0473,0.649,1.97e-06,0.148,0.738,126.596,4
39842,"The Jarmels","A Little Bit Of Soap","['doo-wop']",133813,FALSE,0.598,0.587,10,-7.312,0,0.106,0.258,0,0.184,0.663,137.467,4
93970,"Wanda Jackson","A Little Bitty Tear","['nashville sound', 'oklahoma country', 'rock-and-roll', 'rockabilly']",126106,FALSE,0.517,0.491,0,-7.732,1,0.0348,0.804,3.74e-06,0.139,0.891,132.095,4
53716,"Cliff Richard","A Little In Love","['adult standards', 'brill building pop', 'bubblegum pop', 'classic uk pop', 'europop', 'mellow gold', 'new wave pop', 'rock-and-roll', 'soft rock']",219533,FALSE,0.682,0.674,7,-10.39,1,0.0274,0.0391,0,0.307,0.921,117.289,4
19237,"Elvis Presley vs JXL","A Little Less Conversation",NA,211506,FALSE,0.597,0.97,4,-5.972,0,0.0502,0.000385,0.205,0.133,0.717,114.999,4
56596,"Juice Newton","A Little Love","['classic country pop', 'country dawn', 'soft rock']",194733,FALSE,0.611,0.807,9,-8.661,1,0.0324,0.142,0.0114,0.0802,0.93,144.34,4
38374,"Easton Corbin","A Little More Country Than That","['contemporary country', 'country', 'country road', 'modern country rock']",172226,FALSE,0.484,0.61,11,-8.484,1,0.0363,0.0776,2.81e-06,0.102,0.584,84.365,4
76412,"Toby Keith","A Little Too Late","['contemporary country', 'country', 'country road', 'oklahoma country']",248040,FALSE,0.408,0.752,11,-5.725,1,0.0478,0.188,3.92e-05,0.141,0.604,201.713,4
36828,"Clarence Henry","A Little Too Much","['louisiana blues', 'new orleans blues', 'rhythm and blues', 'rock-and-roll']",115800,FALSE,0.693,0.611,0,-8.333,1,0.0338,0.693,0,0.146,0.893,114.697,4
203,"Freddie And The Dreamers","A Little You","['brill building pop', 'british invasion', 'bubblegum pop', 'classic uk pop', 'merseybeat', 'rock-and-roll']",129600,FALSE,0.351,0.573,9,-10.993,1,0.0325,0.0868,0,0.421,0.766,73.361,4
19645,"The Weeknd","A Lonely Night","['canadian contemporary r&b', 'canadian pop', 'pop']",220173,FALSE,0.853,0.663,7,-6.955,0,0.0755,0.0431,8.65e-06,0.0891,0.864,113.999,4
89436,"Boston","A Man I'll Never Be","['album rock', 'art rock', 'classic rock', 'hard rock', 'mellow gold', 'rock', 'soft rock']",396173,FALSE,0.418,0.587,0,-9.607,1,0.0272,0.0559,6.82e-06,0.0548,0.486,106.665,4
13016,"The Whispers","A Mother For My Children","['classic soul', 'disco', 'funk', 'motown', 'new jack swing', 'post-disco', 'quiet storm', 'rock steady', 'soul', 'urban contemporary']",194093,FALSE,0.421,0.72,3,-9.071,1,0.217,0.11,5.85e-05,0.0557,0.787,197.535,4
65638,"Celine Dion","A New Day Has Come","['canadian pop', 'dance pop']",259773,FALSE,0.574,0.691,6,-5.103,1,0.035,0.0826,1.65e-05,0.149,0.195,91.969,4
88475,"Brenda & The Tabulations","A Part Of You","['adult standards', 'brill building pop']",208706,FALSE,0.383,0.491,5,-10.099,1,0.0266,0.621,0.00924,0.0609,0.707,167.267,3
32747,"Tavares","A Penny For Your Thoughts","['adult standards', 'classic soul', 'disco', 'funk', 'motown', 'post-disco', 'quiet storm']",270066,FALSE,0.537,0.469,0,-7.941,1,0.0324,0.6,0,0.109,0.363,136.536,4
77083,"The Rascals","A Ray Of Hope","['brill building pop', 'bubblegum pop', 'folk rock', 'mellow gold', 'merseybeat', 'motown', 'psychedelic rock', 'rock-and-roll']",226213,FALSE,0.454,0.656,0,-9.422,1,0.0328,0.587,1.66e-05,0.116,0.82,102.124,4
45682,"Teena Marie Featuring Gerald Levert","A Rose By Any Other Name","['classic soul', 'disco', 'funk', 'motown', 'neo soul', 'new jack swing', 'post-disco', 'quiet storm', 'r&b', 'soul', 'urban contemporary']",327160,FALSE,0.693,0.7,6,-4.469,0,0.0591,0.75,0,0.0809,0.481,128.338,4
47455,"Lobo","A Simple Man","['adult standards', 'brill building pop', 'bubblegum pop', 'classic uk pop', 'country rock', 'folk', 'folk rock', 'mellow gold', 'soft rock']",176440,FALSE,0.785,0.704,0,-10.172,1,0.0343,0.328,5.79e-05,0.1,0.943,79.431,4
16075,"Boyz II Men","A Song For Mama","['boy band', 'new jack swing', 'pop', 'quiet storm', 'r&b', 'urban contemporary']",303373,FALSE,0.569,0.44,7,-8.948,1,0.035,0.471,0,0.143,0.151,75.001,4
67764,"Charlie Rich","A Very Special Love Song","['arkansas country', 'country', 'country rock', 'nashville sound']",166173,FALSE,0.39,0.384,0,-10.487,1,0.027,0.921,0.00303,0.143,0.333,76.482,4
53049,"The Kinks","A Well Respected Man","['album rock', 'art rock', 'british invasion', 'classic rock', 'dance rock', 'folk rock', 'glam rock', 'mellow gold', 'protopunk', 'psychedelic rock', 'rock', 'roots rock']",161586,FALSE,0.53,0.873,4,-5.105,0,0.118,0.297,0,0.0521,0.583,162.154,4
30795,"Ray Parker Jr. & Raydio","A Woman Needs Love (Just Like You Do)","['disco']",249053,FALSE,0.744,0.376,6,-14.937,0,0.0395,0.479,3.86e-05,0.254,0.696,91.113,4
1757,"Alan Jackson","A Woman's Love","['contemporary country', 'country', 'country road']",253640,FALSE,0.593,0.512,4,-10.268,1,0.0329,0.519,0.0507,0.185,0.407,139.334,4
43414,"Rozetta Johnson","A Womans' Way","[]",214493,FALSE,0.538,0.603,0,-6.273,1,0.0266,0.461,3.43e-06,0.416,0.742,94.039,4
12336,"KISS","A World Without Heroes","['album rock', 'classic rock', 'glam rock', 'hard rock', 'metal', 'rock']",160666,FALSE,0.581,0.374,4,-9.415,0,0.0361,0.49,4.38e-05,0.127,0.379,115.292,4
42294,"Jackson 5","ABC","['adult standards', 'motown', 'soul']",177733,FALSE,0.736,0.689,8,-11.781,1,0.0437,0.523,0.000319,0.123,0.95,93.781,4
27216,"T.I. Featuring Young Thug","About The Money","['atl hip hop', 'dance pop', 'dirty south rap', 'gangster rap', 'hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",270120,TRUE,0.81,0.721,9,-4.964,0,0.265,0.0487,0,0.0886,0.552,101.997,4
7286,"Smokey Robinson & The Miracles","Abraham, Martin And John","['classic soul', 'disco', 'funk', 'motown', 'quiet storm', 'soul', 'southern soul']",180066,FALSE,0.431,0.411,1,-12.434,1,0.0306,0.271,0,0.361,0.483,88.158,4
8708,"Five Man Electrical Band","Absolutely Right","['canadian psychedelic', 'classic canadian rock']",138200,FALSE,0.48,0.798,7,-9.936,1,0.0338,0.164,2.95e-05,0.179,0.964,169.518,4
68250,"Bruce Hornsby & The Range","Across The River","['album rock', 'folk', 'folk rock', 'heartland rock', 'mellow gold', 'piano rock', 'pop rock', 'soft rock']",309720,FALSE,0.529,0.816,7,-7.075,1,0.0385,0.276,0.0602,0.192,0.825,149.769,4
69928,"Ludacris","Act A Fool","['atl hip hop', 'dance pop', 'dirty south rap', 'hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",270733,TRUE,0.568,0.904,0,-2.497,1,0.349,0.221,0,0.22,0.799,109.331,5
825,"City Girls","Act Up","['pop', 'pop rap', 'trap queen']",158332,TRUE,0.938,0.638,8,-4.713,1,0.189,0.0167,0,0.111,0.313,97.075,4
64614,"Paul Anka","Adam And Eve","['adult standards', 'brill building pop', 'canadian pop', 'easy listening', 'lounge', 'rock-and-roll']",131293,FALSE,0.338,0.681,9,-8.886,0,0.0459,0.663,0,0.406,0.769,201.75,4
20245,"Tainy, Anuel AA & Ozuna","Adicto","['pop reggaeton']",270740,FALSE,0.734,0.836,10,-4.803,0,0.0735,0.017,1.64e-05,0.179,0.623,80.002,4
58147,"Jim Reeves","Adios Amigo","['adult standards', 'nashville sound', 'rock-and-roll']",151173,FALSE,0.463,0.128,10,-17.919,1,0.0348,0.904,4.48e-06,0.0945,0.226,79.952,3
82585,"Cashmere Cat Featuring Ariana Grande","Adore","['downtempo', 'edm', 'electronic trap', 'electropop', 'pop', 'post-teen pop', 'shiver pop']",216000,FALSE,0.331,0.614,5,-5.588,0,0.0586,0.0668,1.28e-05,0.108,0.201,139.849,4
13327,"System Of A Down","Aerials","['alternative metal', 'nu metal', 'post-grunge', 'rap metal', 'rock']",235053,FALSE,0.364,0.922,0,-4.217,0,0.0566,0.000918,0.035,0.0696,0.227,79.342,4
9941,"Rick Springfield","Affair Of The Heart","['album rock', 'australian rock', 'bubblegum pop', 'classic rock', 'dance rock', 'mellow gold', 'new wave pop', 'pop rock', 'rock', 'soft rock', 'yacht rock']",226760,FALSE,0.609,0.907,9,-7.245,0,0.0433,0.0501,0,0.0964,0.378,129.077,4
15448,"Travis Denning","After A Few","['contemporary country', 'country pop']",213493,FALSE,0.617,0.849,10,-4.316,0,0.0355,0.0146,0,0.194,0.695,106.998,4
93762,"Merry Clayton","After All This Time","['classic soul']",190346,FALSE,0.585,0.532,1,-10.054,1,0.0302,0.61,4.14e-05,0.0828,0.669,96.524,4
52825,"Marvin Gaye","After The Dance","['classic soul', 'funk', 'motown', 'northern soul', 'quiet storm', 'soul']",279760,FALSE,0.734,0.489,1,-13.216,0,0.0332,0.703,0.00268,0.282,0.847,109.735,4
40016,"Nelson","After The Rain","['classic country pop', 'country', 'nashville sound', 'outlaw country', 'singer-songwriter', 'texas country']",245862,FALSE,0.459,0.874,3,-5.865,1,0.0732,0.0163,0.000454,0.333,0.575,125.439,4
46569,"Faith Evans","Again","['dance pop', 'hip hop', 'hip pop', 'neo soul', 'new jack swing', 'quiet storm', 'r&b', 'urban contemporary']",198786,FALSE,0.502,0.77,6,-6.046,0,0.265,0.0189,0,0.41,0.359,173.787,4
71316,"Lenny Kravitz","Again","['permanent wave', 'pop rock', 'rock']",231666,FALSE,0.554,0.82,2,-5.035,1,0.0296,0.0186,4.91e-05,0.161,0.755,79.155,4
46996,"Jon Pardi","Ain't Always The Cowboy","['contemporary country', 'country', 'country road', 'modern country rock']",220880,FALSE,0.539,0.837,9,-3.458,1,0.0385,0.0094,0,0.262,0.551,151.913,4
49989,"John Cougar","Ain't Even Done With The Night","['album rock', 'classic rock', 'folk rock', 'heartland rock', 'mellow gold', 'pop rock', 'rock', 'singer-songwriter', 'soft rock']",279066,FALSE,0.788,0.688,11,-6.912,1,0.0296,0.214,0.000472,0.0545,0.793,120.733,4
11268,"Joe Tex","Ain't Gonna Bump No More (with No Big Fat Woman)","[]",403640,FALSE,0.745,0.835,6,-10.961,0,0.0346,0.014,0.113,0.139,0.936,113.897,4
34437,"Major Lance","Ain't It A Shame","['beach music', 'chicago soul', 'classic soul', 'motown', 'northern soul', 'rhythm and blues', 'soul']",124533,FALSE,0.778,0.746,10,-10.171,1,0.107,0.733,0,0.246,0.708,118.046,4
90932,"The Miracles","Ain't It, Baby","['adult standards', 'brill building pop', 'classic soul', 'funk', 'motown', 'quiet storm', 'rock-and-roll', 'soul', 'southern soul']",155240,FALSE,0.535,0.812,2,-7.602,1,0.0549,0.781,0,0.193,0.871,132.232,4
23685,"Yung L.A. Featuring Young Dro & T.I.","Ain't I","['atl hip hop', 'dirty south rap', 'southern hip hop', 'trap']",252093,TRUE,0.665,0.826,11,-3.126,1,0.116,0.141,0,0.0926,0.541,77.504,4
33922,"Jaheim","Ain't Leavin Without You","['dance pop', 'hip pop', 'neo soul', 'new jack swing', 'quiet storm', 'r&b', 'urban contemporary']",200613,FALSE,0.741,0.754,10,-5.899,0,0.247,0.151,0,0.265,0.819,98.929,4
33113,"Bobby Bland","Ain't No Love In The Heart Of The City","['blues', 'electric blues', 'soul', 'soul blues', 'southern soul']",233560,FALSE,0.515,0.383,9,-18.192,0,0.0493,0.937,0.904,0.097,0.758,158.457,4
30577,"Bobby Bland","Ain't No Telling","['blues', 'electric blues', 'soul', 'soul blues', 'southern soul']",148160,FALSE,0.531,0.56,7,-8.312,1,0.029,0.312,0.000167,0.31,0.745,110.042,4
79434,"Miki Howard","Ain't Nobody Like You","['funk', 'neo soul', 'new jack swing', 'post-disco', 'quiet storm', 'r&b', 'urban contemporary']",295373,FALSE,0.702,0.664,6,-10.038,0,0.0856,0.276,1.26e-06,0.0419,0.697,79.863,4
41010,"Aretha Franklin","Ain't Nothing Like The Real Thing","['classic soul', 'jazz blues', 'memphis soul', 'soul', 'southern soul']",229960,FALSE,0.463,0.346,5,-9.285,1,0.0322,0.545,0,0.145,0.22,117.655,4
88210,"Four Tops","Ain't That Love","['adult standards', 'brill building pop', 'classic soul', 'disco', 'funk', 'mellow gold', 'motown', 'quiet storm', 'soft rock', 'soul']",146666,FALSE,0.577,0.785,1,-8.506,1,0.213,0.798,0,0.545,0.957,146.04,4
20078,"Luther Ingram","Ain't That Loving You (For More Reasons Than One)","['classic soul', 'memphis soul', 'southern soul']",250973,FALSE,0.536,0.544,8,-7.316,1,0.0571,0.159,0,0.057,0.398,123.841,4
46462,"French Montana","Ain't Worried About Nothin","['hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",212426,TRUE,0.69,0.907,1,-2.237,1,0.113,0.0249,0,0.0913,0.691,127.972,4
36116,"Albert Hammond","Air Disaster","['dance-punk', 'garage rock', 'indie pop', 'indie rock', 'modern rock', 'punk blues', 'rock']",218866,FALSE,0.478,0.499,7,-10.511,0,0.0376,0.355,0,0.141,0.349,99.516,4
2708,"Bee Gees","Alive","['adult standards', 'disco', 'mellow gold', 'soft rock']",285373,FALSE,0.703,0.826,10,-7.179,0,0.0341,0.0322,0.00629,0.179,0.945,103.564,4
28400,"Color Me Badd","All 4 Love","['boy band', 'new jack swing', 'r&b', 'urban contemporary']",211493,FALSE,0.807,0.75,2,-8.29,1,0.0315,0.0347,0.00017,0.149,0.797,106.389,4
5098,"Hoodie Allen Featuring Ed Sheeran","All About It","['indie pop rap', 'pop rap']",205733,TRUE,0.738,0.87,1,-5.343,0,0.0844,0.0124,0,0.14,0.845,89.988,4
42438,"Flyleaf","All Around Me","['alternative metal', 'christian alternative rock', 'christian rock', 'nu metal', 'pop emo', 'post-grunge']",198506,FALSE,0.473,0.871,9,-4.893,1,0.0456,0.0216,0,0.0525,0.47,146.975,4
66659,"Allure Featuring 112","All Cried Out","[]",275773,FALSE,0.613,0.464,1,-8.918,1,0.0241,0.176,0,0.103,0.176,139.802,4
44609,"Meek Mill Featuring Chris Brown & Nicki Minaj","All Eyes On You","['hip hop', 'philly rap', 'pop rap', 'rap', 'southern hip hop', 'trap']",223973,TRUE,0.589,0.658,11,-5.288,0,0.203,0.0242,0,0.118,0.251,77.521,4
82747,"High School Musical 2 Cast","All For One",NA,253786,FALSE,0.679,0.982,5,-3.207,1,0.126,0.151,0,0.634,0.837,150.054,4
67353,"Backstreet Boys","All I Have To Give","['boy band', 'dance pop', 'pop']",276573,FALSE,0.731,0.574,1,-7.114,1,0.029,0.0644,0,0.0675,0.392,95.995,4
29454,"Charley Pride","All I Have To Offer You (Is Me)","['classic country pop', 'country', 'country rock', 'nashville sound']",180933,FALSE,0.473,0.355,5,-11.759,1,0.0283,0.0963,0,0.213,0.719,102.01,4
732,"The Pointer Sisters","All I Know Is The Way I Feel","['dance pop', 'dance rock', 'disco', 'europop', 'girl group', 'hi-nrg', 'mellow gold', 'motown', 'new wave pop', 'quiet storm', 'soft rock']",281400,FALSE,0.609,0.733,7,-5.715,1,0.0305,0.307,0,0.0622,0.694,88.864,4
11369,"Gladys Knight And The Pips","All I Need Is Time","['adult standards', 'brill building pop', 'classic soul', 'disco', 'funk', 'motown', 'quiet storm', 'soul', 'southern soul']",269426,FALSE,0.341,0.335,11,-14.611,0,0.0326,0.533,0.000514,0.138,0.368,141.323,4
65998,"A+","All I See","[]",264733,FALSE,0.742,0.552,5,-8.859,0,0.243,0.0993,0,0.379,0.617,90.018,4
26900,"Justin Bieber Duet With Mariah Carey","All I Want For Christmas Is You (SuperFestive!)",NA,240333,FALSE,0.576,0.911,9,-5.318,0,0.064,0.306,0,0.434,0.401,149.998,4
59976,"Mariah Carey","All I Want For Christmas Is You","['dance pop', 'pop', 'r&b', 'urban contemporary']",241106,FALSE,0.335,0.625,7,-7.462,1,0.0386,0.164,0,0.0708,0.346,150.277,4
56749,"Miguel Featuring J. Cole","All I Want Is You","['dance pop', 'pop', 'pop rap', 'r&b', 'urban contemporary']",295920,FALSE,0.776,0.603,5,-5.696,1,0.0343,0.0728,6.25e-05,0.111,0.921,96.888,4
26383,"U2","All I Want Is You","['irish rock', 'permanent wave', 'rock']",389933,FALSE,0.239,0.442,1,-11.494,1,0.0308,0.106,0.0411,0.0738,0.4,185.723,4
8239,"Kansas","All I Wanted","['album rock', 'art rock', 'bow pop', 'classic rock', 'hard rock', 'heartland rock', 'mellow gold', 'progressive rock', 'rock', 'soft rock', 'symphonic rock']",201133,FALSE,0.502,0.484,3,-14.219,1,0.0339,0.0206,3.79e-06,0.659,0.674,113.338,4
77736,"Howard Jones","All I Want","['dance rock', 'mellow gold', 'new romantic', 'new wave', 'new wave pop', 'soft rock', 'synthpop']",275733,FALSE,0.611,0.868,3,-7.982,1,0.0294,0.0397,0.00523,0.28,0.424,113.167,4
56433,"Lil Baby","All In","['atl hip hop', 'atl trap', 'rap', 'trap']",156032,TRUE,0.836,0.649,11,-6.442,1,0.332,0.0716,0,0.0943,0.294,95.084,4
3717,"Drake Featuring 2 Chainz & Big Sean","All Me","['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",270866,TRUE,0.67,0.515,1,-6.977,1,0.397,0.0705,0,0.25,0.422,122.006,4
81796,"Luke Bryan","All My Friends Say","['contemporary country', 'country', 'country road']",242800,FALSE,0.683,0.9,9,-4.422,1,0.0333,0.0439,0,0.177,0.962,117.036,4
5970,"Kenny Rogers","All My Life","['adult standards', 'classic country pop', 'country', 'mellow gold', 'nashville sound', 'soft rock']",233773,FALSE,0.263,0.379,5,-12.391,1,0.0314,0.319,1.05e-06,0.128,0.0907,176.241,4
79608,"Beyonce","All Night","['dance pop', 'pop', 'pop rap', 'r&b']",322000,FALSE,0.574,0.573,11,-7.079,1,0.085,0.392,2.16e-05,0.0933,0.626,136.304,4
76121,"Julio Iglesias & Diana Ross","All Of You","['latin', 'latin pop']",237493,FALSE,0.476,0.587,10,-8.518,0,0.0289,0.35,0,0.406,0.518,85.913,4
49900,"Josh Turner","All Over Me","['contemporary country', 'country', 'country road', 'modern country rock']",199493,FALSE,0.546,0.776,1,-7.359,1,0.0352,0.403,0.00633,0.193,0.888,169.847,4
74625,"Free","All Right Now","['alternative r&b', 'hip hop', 'indie soul']",330643,FALSE,0.787,0.472,2,-12.824,1,0.0832,0.221,0.000336,0.153,0.824,120.059,4
88367,"Lea Roberts","All Right Now","[]",193720,FALSE,0.657,0.693,6,-10.945,1,0.056,0.0721,0.0246,0.135,0.917,121.919,4
40316,"Rod Stewart","All Right Now","['adult standards', 'mellow gold', 'soft rock']",282266,FALSE,0.683,0.694,1,-15.984,1,0.0347,0.0516,0.0541,0.122,0.668,123.741,4
44968,"Duran Duran","All She Wants Is","['dance rock', 'new romantic', 'new wave', 'new wave pop', 'rock', 'soft rock', 'synthpop']",274626,FALSE,0.623,0.668,2,-12.88,1,0.0421,0.000435,0.0326,0.237,0.728,120.011,4
52371,"Justin Bieber","All That Matters","['canadian pop', 'dance pop', 'pop', 'post-teen pop']",191173,FALSE,0.696,0.513,6,-5.567,0,0.0424,0.00508,0,0.0682,0.144,129.859,4
79786,"Maino Featuring T-Pain","All The Above","['pop rap', 'rap', 'trap']",319940,TRUE,0.374,0.888,8,-3.197,1,0.12,0.0762,0,0.202,0.365,148.828,4
6674,"Kenny Chesney","All The Pretty Girls","['contemporary country', 'country', 'country road']",212893,FALSE,0.612,0.848,6,-3.736,1,0.0368,0.00916,0,0.366,0.719,120.996,4
2359,"Kendrick Lamar & SZA","All The Stars","['conscious hip hop', 'hip hop', 'rap', 'west coast rap']",232186,TRUE,0.698,0.633,8,-4.946,1,0.0597,0.0605,0.000194,0.0926,0.552,96.924,4
84388,"t.A.T.u.","All The Things She Said","['dance pop', 'girl group']",214440,TRUE,0.52,0.848,5,-5.756,0,0.0483,0.0356,0.00761,0.105,0.402,179.978,4
76406,"Tamar Braxton","All The Way Home","['dance pop', 'deep pop r&b', 'hip pop', 'neo soul', 'r&b', 'urban contemporary']",262226,FALSE,0.652,0.663,2,-5.318,0,0.0378,0.0807,2.59e-06,0.0805,0.254,107.99,4
11001,"Dan Peek","All Things Are Possible","['deep soft rock']",178225,FALSE,0.384,0.552,7,-8.658,1,0.0329,0.469,0.000112,0.163,0.255,104.799,4
8908,"Debarge","All This Love","['disco', 'funk', 'motown', 'new jack swing', 'post-disco', 'quiet storm', 'r&b', 'soul', 'urban contemporary']",352586,FALSE,0.43,0.683,5,-5.578,0,0.0396,0.13,1.13e-06,0.0982,0.438,187.354,4
21102,"Tiffany","All This Time","['new wave pop', 'soft rock']",261906,FALSE,0.474,0.503,1,-9.921,1,0.0323,0.191,2.94e-06,0.328,0.436,180.048,4
91836,"George Harrison","All Those Years Ago","['album rock', 'classic rock', 'folk rock', 'mellow gold', 'psychedelic rock', 'rock', 'roots rock', 'soft rock']",227320,FALSE,0.555,0.639,2,-6.832,1,0.033,0.137,1.98e-05,0.0733,0.518,125.77,4
36271,"Cyndi Lauper","All Through The Night","['dance pop', 'dance rock', 'europop', 'mellow gold', 'new wave pop', 'permanent wave', 'pop', 'pop rock', 'soft rock']",272840,FALSE,0.573,0.65,8,-5.934,1,0.0257,0.201,1.58e-06,0.048,0.346,95.1,4
63704,"Rita Coolidge","All Time High","['adult standards', 'bubblegum pop', 'classic uk pop', 'country rock', 'mellow gold', 'native american', 'soft rock']",185893,FALSE,0.49,0.515,3,-8.919,0,0.0313,0.113,3.75e-05,0.125,0.343,105.63,4
32698,"Dan + Shay","All To Myself","['contemporary country', 'pop']",169920,FALSE,0.646,0.781,1,-4.616,1,0.0313,0.208,0,0.125,0.565,94.975,4
86720,"Taylor Swift","All Too Well","['pop', 'post-teen pop']",327893,FALSE,0.6,0.631,0,-7.783,1,0.0255,0.0398,0.000469,0.128,0.314,93.04,4
31945,"Rough Trade","All Touch","['classic canadian rock']",212666,FALSE,0.755,0.493,11,-16.184,0,0.038,0.0141,3.77e-06,0.0765,0.868,136.622,4
68673,"Lisa Stansfield","All Woman","['british soul', 'dance pop', 'disco', 'new wave pop', 'soft rock']",317373,FALSE,0.583,0.338,7,-13.63,0,0.064,0.607,9.86e-06,0.0708,0.378,141.889,4
74345,"The Beatles","All You Need Is Love","['british invasion', 'merseybeat', 'psychedelic rock', 'rock']",230386,FALSE,0.4,0.48,7,-7.768,1,0.0295,0.346,3.1e-05,0.155,0.653,103.436,4
89410,"RTZ","All You've Got","[]",244266,FALSE,0.684,0.655,9,-10.417,1,0.0335,0.215,0,0.0676,0.682,110.33,4
27144,"The Band Perry","All Your Life","['contemporary country', 'country', 'country dawn', 'country road', 'modern country rock']",231933,FALSE,0.536,0.521,9,-5.373,1,0.0261,0.227,0,0.165,0.455,131.937,4
32498,"Billy Joel","Allentown","['album rock', 'classic rock', 'folk rock', 'mellow gold', 'piano rock', 'rock', 'singer-songwriter', 'soft rock']",230160,FALSE,0.69,0.837,7,-8.312,1,0.0289,0.127,7.2e-06,0.102,0.967,113.817,4
4142,"Heart","Allies","['folk-pop', 'indie folk', 'indie pop', 'neo mellow', 'new americana', 'seattle indie', 'stomp and holler']",281426,FALSE,0.48,0.336,10,-11.992,1,0.0319,0.112,0,0.106,0.114,67.394,4
41591,"The Kingston Trio","Ally Ally Oxen Free","['american folk revival', 'bubblegum pop', 'folk', 'folk rock', 'traditional folk']",126266,FALSE,0.627,0.102,2,-21.544,1,0.0404,0.788,0.00013,0.188,0.69,131.808,4
25448,"The Rolling Stones","Almost Hear You Sigh","['album rock', 'british invasion', 'classic rock', 'protopunk', 'rock']",277466,FALSE,0.667,0.795,1,-5.278,0,0.023,0.341,0.000428,0.0944,0.79,102.335,4
31072,"Craig Morgan","Almost Home","['contemporary country', 'country', 'country road', 'modern country rock', 'redneck']",289000,FALSE,0.525,0.481,8,-6.715,1,0.0251,0.302,0,0.121,0.237,75.974,4
26284,"Dave Edmunds","Almost Saturday Night","['british blues', 'classic uk pop', 'power pop', 'pub rock', 'rock-and-roll', 'rockabilly', 'roots rock']",133266,FALSE,0.612,0.734,2,-9.204,1,0.0443,0.114,3.06e-05,0.297,0.712,129.079,4
63627,"John Fogerty","Almost Saturday Night","['blues rock', 'classic rock', 'country rock', 'heartland rock', 'mellow gold', 'rock', 'roots rock']",197973,FALSE,0.484,0.826,0,-5.746,1,0.0305,0.192,8e-05,0.198,0.605,130.701,4
25937,"The Coasters","Along Came Jones","['brill building pop', 'bubblegum pop', 'doo-wop', 'motown', 'rhythm and blues', 'rock-and-roll', 'rockabilly', 'soul']",178053,FALSE,0.769,0.663,9,-10.156,1,0.32,0.716,0,0.173,0.83,104.747,4
83108,"Kelly Clarkson","Already Gone","['dance pop', 'neo mellow', 'pop', 'pop rock', 'post-teen pop', 'talent show']",281560,FALSE,0.209,0.872,9,-2.996,1,0.0757,0.217,0,0.0768,0.294,78.139,4
23784,"Peggy Lee","Alright, Okay, You Win","['adult standards', 'brill building pop', 'lounge', 'soul', 'swing', 'torch song', 'vocal jazz']",175626,FALSE,0.717,0.193,0,-12.556,1,0.0429,0.402,0,0.0783,0.717,138.328,4
70849,"Jamiroquai","Alright","['acid jazz', 'dance pop']",263920,FALSE,0.815,0.875,7,-7.822,0,0.0598,0.174,0.048,0.136,0.733,105.805,4
98521,"Kris Kross Featuring Supercat","Alright","['dutch house', 'dutch pop', 'tropical house']",243333,FALSE,0.803,0.582,10,-11.286,0,0.19,0.00432,4.26e-05,0.252,0.547,97.305,4
81764,"Deodato","Also Sprach Zarathustra (2001)","['bossa nova jazz', 'brazilian jazz', 'jazz funk', 'jazz fusion', 'soul jazz']",663133,FALSE,0.448,0.763,0,-11.657,1,0.0493,0.431,0.359,0.291,0.513,117.938,4
34423,"Heatwave","Always And Forever","['brit funk', 'classic soul', 'disco', 'funk', 'jazz funk', 'motown', 'post-disco', 'quiet storm', 'soul', 'urban contemporary']",287266,FALSE,0.338,0.175,2,-17.104,1,0.0319,0.125,8.8e-05,0.108,0.201,152.604,3
22787,"Whistle","Always And Forever","[]",284066,FALSE,0.373,0.303,2,-16.456,1,0.0292,0.109,0,0.174,0.32,162.227,3
74025,"The Kid LAROI","Always Do","['australian hip hop']",151704,TRUE,0.762,0.426,8,-6.865,1,0.113,0.0442,0,0.0858,0.582,167.827,4
36173,"Bryson Tiller","Always Forever","['kentucky hip hop', 'pop', 'pop rap', 'r&b', 'rap', 'trap']",170053,FALSE,0.605,0.489,10,-7.234,0,0.174,0.168,2.36e-06,0.187,0.326,147.341,4
46469,"Eli Young Band","Always The Love Songs","['contemporary country', 'country', 'country road', 'heartland rock', 'modern country rock', 'texas country']",221800,FALSE,0.471,0.784,4,-3.337,1,0.0315,0.372,4.55e-05,0.705,0.387,149.91,4
90657,"Al Martino","Always Together","['adult standards', 'brill building pop', 'easy listening', 'lounge']",158000,FALSE,0.281,0.272,8,-12.982,1,0.031,0.735,0.00245,0.241,0.358,105.912,4
19504,"Freddie Scott","Am I Grooving You","['southern soul']",191493,FALSE,0.613,0.537,9,-11.102,1,0.0289,0.509,0,0.399,0.618,98.317,4
31490,"Engelbert Humperdinck","Am I That Easy To Forget","['adult standards', 'brill building pop', 'easy listening', 'lounge']",189933,FALSE,0.273,0.342,4,-13.441,1,0.0303,0.282,2.66e-06,0.089,0.448,134.238,4
55711,"Jackie Wilson","Am I The Man","['adult standards', 'brill building pop', 'chicago soul', 'classic soul', 'motown', 'quiet storm', 'rhythm and blues', 'rock-and-roll', 'rockabilly', 'soul']",131076,FALSE,0.448,0.79,5,-6.995,1,0.117,0.749,3.9e-05,0.709,0.901,153.362,4
67684,"Boston","Amanda","['album rock', 'art rock', 'classic rock', 'hard rock', 'mellow gold', 'rock', 'soft rock']",256200,FALSE,0.45,0.415,7,-14.028,1,0.0318,0.322,0,0.104,0.279,125.434,4
8340,"Wale Featuring Meek Mill & Rick Ross","Ambition","['hip hop', 'pop', 'pop rap', 'rap', 'southern hip hop', 'trap']",302546,TRUE,0.42,0.744,8,-5.033,1,0.396,0.398,8.54e-06,0.192,0.324,161.792,4
96396,"Linda Laurie","Ambrose (Part Five)","['vintage swoon']",156933,FALSE,0.585,0.479,3,-6.641,1,0.136,0.95,2.13e-05,0.0739,0.447,149.342,3
25599,"Edens Edge","Amen","['contemporary country', 'country dawn', 'country road', 'modern country rock']",228560,FALSE,0.509,0.688,5,-3.892,1,0.0313,0.345,0,0.151,0.434,179.047,4
47006,"Otis Redding","Amen","['classic soul', 'funk', 'memphis soul', 'soul', 'soul blues', 'southern soul']",186440,FALSE,0.612,0.136,7,-12.687,1,0.117,0.572,0,0.234,0.535,101.785,4
18155,"Petula Clark","American Boys","['adult standards', 'brill building pop', 'bubblegum pop', 'classic uk pop', 'easy listening', 'folk', 'folk rock', 'lounge', 'mellow gold', 'merseybeat', 'rock-and-roll']",174066,FALSE,0.469,0.437,0,-7.654,1,0.027,0.763,1.39e-05,0.189,0.597,139.126,4
70627,"Bob Seger","American Storm","['album rock', 'classic rock', 'folk rock', 'hard rock', 'heartland rock', 'mellow gold', 'rock', 'soft rock']",243263,FALSE,0.501,0.943,4,-4.796,1,0.0468,0.0761,0,0.151,0.805,150.357,4
29637,"Lenny Kravitz","American Woman","['permanent wave', 'pop rock', 'rock']",264560,FALSE,0.688,0.67,1,-7.872,1,0.0971,0.0304,0,0.0782,0.537,83.988,4
74197,"""Weird Al"" Yankovic","Amish Paradise","['antiviral pop', 'comedy rock', 'comic', 'parody']",202920,FALSE,0.728,0.448,8,-10.54,1,0.172,0.103,0,0.267,0.483,80.902,4
49696,"5 Seconds Of Summer","Amnesia","['boy band', 'dance pop', 'pop', 'post-teen pop']",237247,FALSE,0.572,0.499,2,-5.237,1,0.0311,0.0283,0,0.213,0.108,101.593,4
28394,"Roger Williams","Amor","['adult standards', 'ballroom', 'easy listening', 'lounge']",179133,FALSE,0.567,0.492,10,-15.025,1,0.0388,0.714,0.221,0.2,0.791,111.191,4
47484,"Mickey Newbury","An American Trilogy","['country rock', 'outlaw country', 'traditional folk']",294493,FALSE,0.267,0.127,3,-14.183,1,0.0334,0.786,0.0195,0.118,0.102,72.941,4
47710,"The Bravery","An Honest Mistake","['alternative dance', 'dance-punk', 'garage rock', 'indie pop', 'indie rock', 'modern rock', 'new rave']",219706,FALSE,0.465,0.883,2,-4.259,0,0.0297,3.29e-06,0.506,0.101,0.644,140.047,4
99824,"The Beatles","And I Love Her","['british invasion', 'merseybeat', 'psychedelic rock', 'rock']",149693,FALSE,0.767,0.331,1,-10.777,0,0.0337,0.64,0,0.0681,0.636,113.312,4
57711,"Dion","And The Night Stood Still","['canadian pop', 'dance pop']",270306,FALSE,0.672,0.669,4,-12.357,1,0.0272,0.0315,0,0.12,0.895,127.39,4
94664,"Dean Martin","Angel Baby","['adult standards', 'easy listening', 'lounge']",164906,FALSE,0.622,0.257,6,-11.28,1,0.0368,0.929,0,0.0969,0.473,111.221,4
54661,"The Jeff Healey Band","Angel Eyes","['blues rock', 'canadian blues', 'classic rock', 'electric blues', 'modern blues']",280933,FALSE,0.536,0.571,0,-6.879,1,0.0278,0.355,0,0.0595,0.397,126.909,4
86038,"U2","Angel Of Harlem","['irish rock', 'permanent wave', 'rock']",229266,FALSE,0.519,0.694,0,-10.792,1,0.0264,0.104,2.3e-06,0.111,0.928,102.718,4
79594,"Rene & Rene","Angelito","['banda', 'grupera', 'norteno', 'regional mexican']",152200,FALSE,0.7,0.378,5,-13.681,0,0.029,0.539,1.92e-05,0.11,0.873,111.846,4
7540,"Rod Stewart","Angel","['adult standards', 'mellow gold', 'soft rock']",243826,FALSE,0.394,0.508,11,-11.318,0,0.0695,0.124,1.61e-06,0.102,0.177,149.54,4
47142,"Three Days Grace","Animal I Have Become","['alternative metal', 'canadian metal', 'canadian rock', 'nu metal', 'post-grunge']",231400,FALSE,0.553,0.853,8,-3.668,1,0.0339,0.000684,0,0.126,0.506,122.023,4
14107,"Neon Trees","Animal","['indie pop', 'modern rock', 'neo mellow', 'pop', 'pop rock', 'post-teen pop']",212293,FALSE,0.486,0.831,5,-5.5,1,0.0506,0.000392,0,0.363,0.8,148.026,4
63880,"The Kingsmen","Annie Fanny","['classic garage rock']",123532,FALSE,0.663,0.399,7,-17.304,1,0.0544,0.503,0,0.195,0.885,131.186,4
94412,"Dionne Warwick","Another Night","['adult standards', 'brill building pop', 'disco', 'lounge', 'mellow gold', 'motown', 'quiet storm', 'soft rock', 'soul', 'vocal jazz']",148680,FALSE,0.6,0.784,9,-9.256,1,0.307,0.578,8.27e-06,0.655,0.877,94.648,4
12310,"Michael Jackson","Another Part Of Me","['pop', 'r&b', 'soul']",234720,FALSE,0.78,0.868,10,-4.5,1,0.0705,0.11,7.67e-05,0.352,0.773,106.069,4
16764,"Jerry Lee Lewis","Another Place Another Time","['brill building pop', 'piano rock', 'rock-and-roll', 'rockabilly']",147413,FALSE,0.58,0.416,9,-11.721,1,0.0296,0.646,0,0.0653,0.698,103.653,4
41233,"Cat Stevens","Another Saturday Night","['british folk', 'classic rock', 'folk', 'folk rock', 'mellow gold', 'rock', 'roots rock', 'singer-songwriter', 'soft rock']",150360,FALSE,0.75,0.856,5,-7.059,1,0.131,0.596,6.48e-06,0.0514,0.964,140.011,4
12544,"Ed Sheeran & Travis Scott","Antisocial","['pop', 'uk pop']",161746,FALSE,0.715,0.823,5,-5.313,0,0.0495,0.133,0,0.361,0.91,151.956,4
98264,"Luther Vandross","Any Love","['funk', 'motown', 'neo soul', 'new jack swing', 'quiet storm', 'r&b', 'soul', 'urban contemporary']",302533,FALSE,0.691,0.648,5,-7.381,0,0.0281,0.488,0,0.0814,0.707,92.854,4
97272,"Chuck Jackson","Any Other Way","['classic soul', 'motown', 'northern soul', 'rhythm and blues', 'southern soul']",146266,FALSE,0.574,0.504,6,-10.453,1,0.0446,0.2,1.1e-06,0.0775,0.537,116.848,4
80727,"Liverpool Five","Any Way That You Want Me","[]",157840,FALSE,0.399,0.423,4,-11.484,1,0.0299,0.507,0,0.417,0.472,101.408,1
87968,"The Sylvers","Any Way You Want Me","['classic soul', 'disco', 'funk', 'quiet storm']",160773,FALSE,0.775,0.921,7,-3.517,1,0.0621,0.306,0,0.0526,0.967,127.65,4
35246,"Teresa Brewer","Anymore","['adult standards', 'deep adult standards']",141466,FALSE,0.484,0.377,7,-11.145,1,0.0365,0.879,0,0.63,0.539,122.784,4
26313,"Collin Raye","Anyone Else","['arkansas country', 'country', 'country road', 'country rock']",227706,FALSE,0.623,0.646,5,-9.888,1,0.0316,0.035,0,0.0736,0.492,121.301,4
40217,"Demi Lovato","Anyone","['dance pop', 'pop', 'post-teen pop']",227785,TRUE,0.578,0.386,11,-6.338,1,0.0385,0.875,0,0.108,0.321,86.075,5
55142,"Justin Bieber","Anyone","['canadian pop', 'pop', 'post-teen pop']",190779,FALSE,0.686,0.538,2,-8.026,1,0.0345,0.181,3.13e-06,0.113,0.584,115.884,4
91817,"Gloria Estefan & Miami Sound Machine","Anything For You","['dance pop', 'latin pop', 'new wave pop', 'soft rock']",221866,FALSE,0.582,0.397,6,-13.099,1,0.033,0.655,0,0.0399,0.29,143.798,4
25626,"Eric Burdon & The Animals","Anything","['blues rock', 'british blues', 'classic rock', 'psychedelic rock']",201960,FALSE,0.493,0.387,2,-12.73,1,0.0272,0.72,0.696,0.147,0.352,88.334,4
1593,"Paul Anka","Anytime (i'll Be There)","['adult standards', 'brill building pop', 'canadian pop', 'easy listening', 'lounge', 'rock-and-roll']",200200,FALSE,0.629,0.703,9,-7.662,0,0.0323,0.243,0,0.0703,0.76,120.929,4
30963,"Jake Owen","Anywhere With You","['contemporary country', 'country', 'country road', 'modern country rock']",209586,FALSE,0.475,0.936,5,-2.545,1,0.0413,0.0418,0,0.0873,0.598,151.988,4
85761,"The Arrows Featuring Davie Allan","Apache '65","['electropop', 'metropopolis', 'swedish electropop', 'swedish synthpop']",137773,FALSE,0.372,0.799,7,-4.204,0,0.0446,0.352,0.828,0.367,0.646,165.986,4
30578,"Jorgen Ingmann & His Guitar","Apache","[]",175520,FALSE,0.644,0.492,9,-13.646,0,0.0468,0.894,0.922,0.117,0.248,129.089,4
62222,"Sugarhill Gang","Apache","['east coast hip hop', 'funk', 'hip hop', 'hip house', 'new jersey rap', 'old school hip hop', 'rap']",373293,FALSE,0.827,0.928,7,-7.266,1,0.133,0.332,0,0.0576,0.261,115.023,4
2821,"The Kinks","Apeman","['album rock', 'art rock', 'british invasion', 'classic rock', 'dance rock', 'folk rock', 'glam rock', 'mellow gold', 'protopunk', 'psychedelic rock', 'rock', 'roots rock']",233400,FALSE,0.683,0.728,9,-8.92,1,0.259,0.568,5.08e-05,0.0384,0.833,75.311,4
80275,"J. Cole","Apparently","['conscious hip hop', 'hip hop', 'nc hip hop', 'pop rap', 'rap']",293040,TRUE,0.801,0.543,5,-9.236,1,0.091,0.564,0,0.116,0.534,133.982,4
993,"Lady Gaga","Applause","['dance pop', 'pop']",212333,FALSE,0.669,0.78,7,-4.287,0,0.053,0.0265,1.63e-06,0.143,0.738,139.945,4
29109,"Duncan Laurence","Arcade","['dutch pop']",183624,FALSE,0.45,0.329,9,-12.603,0,0.0441,0.818,0.00109,0.135,0.266,71.884,3
99498,"Hot Chocolate","Are You Getting Enough Happiness","['classic uk pop', 'disco', 'motown', 'new wave pop', 'soft rock']",352533,FALSE,0.95,0.446,4,-9.659,1,0.05,0.204,0.00238,0.0819,0.948,117.426,4
52551,"Sandy Posey","Are You Never Coming Home","['merseybeat', 'nashville sound', 'rock-and-roll']",181394,FALSE,0.407,0.298,5,-10.977,1,0.0286,0.543,4.39e-06,0.103,0.422,107.832,4
36462,"Ludacris Featuring Nate Dogg","Area Codes","['atl hip hop', 'dance pop', 'dirty south rap', 'hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",303026,TRUE,0.867,0.692,9,-7.125,0,0.366,0.405,0,0.671,0.637,101.027,4
4023,"Dean Friedman","Ariel","['soft rock']",263639,FALSE,0.675,0.564,2,-9.422,1,0.044,0.329,9.07e-05,0.311,0.719,124.544,4
77879,"Wings","Arrow Through Me","['album rock', 'art rock', 'classic rock', 'classic uk pop', 'folk rock', 'mellow gold', 'rock', 'soft rock']",216693,FALSE,0.874,0.364,2,-12.326,1,0.0983,0.218,0.0263,0.101,0.675,86.004,4
88195,"Toby Keith","As Good As I Once Was","['contemporary country', 'country', 'country road', 'oklahoma country']",227840,FALSE,0.679,0.842,5,-4.364,1,0.0376,0.275,0,0.135,0.72,119.013,4
42083,"Sara Evans","As If","['contemporary country', 'country', 'country dawn', 'country gospel', 'country road']",210626,FALSE,0.568,0.861,4,-4.948,1,0.0482,0.000385,0.0209,0.165,0.532,118.933,4
81122,"Candi Staton","As Long As He Takes Care Of Home","['classic soul', 'disco', 'motown', 'quiet storm', 'soul', 'southern soul']",201000,FALSE,0.798,0.583,9,-11.257,1,0.0481,0.28,0.000158,0.0641,0.964,118.157,4
38454,"Expose","As Long As I Can Dream","['freestyle', 'new wave pop']",290066,FALSE,0.426,0.547,2,-11.487,1,0.0344,0.404,0,0.279,0.489,139.174,4
34121,"Justin Bieber Featuring Big Sean","As Long As You Love Me","['canadian pop', 'dance pop', 'pop', 'post-teen pop']",229466,FALSE,0.571,0.873,0,-3.382,0,0.0997,0.0807,0,0.361,0.613,139.691,4
17150,"Glee Cast","As Long As You're There","['glee club', 'hollywood', 'post-teen pop']",256079,FALSE,0.359,0.602,2,-5.525,1,0.0335,0.233,0,0.127,0.263,161.62,3
45300,"Mashmakhan","As The Years Go By","['bass trip', 'canadian psychedelic', 'prog quebec']",225093,FALSE,0.447,0.63,5,-10.234,0,0.0501,0.417,4.32e-05,0.368,0.676,134.159,4
96162,"Eminem","Ass Like That","['detroit hip hop', 'g funk', 'hip hop', 'rap']",265480,TRUE,0.505,0.795,2,-6.283,1,0.434,0.453,0,0.0998,0.734,89.669,3
54485,"Etta James","At Last","['adult standards', 'jazz blues', 'soul', 'soul blues', 'torch song', 'vocal jazz']",179693,FALSE,0.171,0.33,5,-9.699,1,0.0329,0.707,0.00381,0.302,0.315,174.431,3
98994,"Wild Orchid","At Night I Pray","[]",256600,FALSE,0.608,0.785,2,-5.992,0,0.0891,0.439,0,0.0786,0.403,155.458,4
68138,"The Drifters","At The Club","['adult standards', 'brill building pop', 'bubblegum pop', 'lounge', 'mellow gold', 'motown', 'rock-and-roll', 'rockabilly', 'soul']",173253,FALSE,0.555,0.664,5,-9.631,1,0.0381,0.0733,0,0.252,0.974,127.177,4
93631,"Billy Vera & The Beaters","At This Moment","[]",234506,FALSE,0.578,0.286,6,-7.371,1,0.0421,0.864,2.68e-05,0.168,0.16,80.975,3
93313,"OutKast","ATLiens","['atl hip hop', 'dirty south rap', 'hip hop', 'rap', 'southern hip hop']",230693,TRUE,0.918,0.734,11,-2.832,0,0.269,0.0294,7.9e-06,0.191,0.608,97.044,4
83200,"The Weeknd","Attention","['canadian contemporary r&b', 'canadian pop', 'pop']",197653,TRUE,0.671,0.428,4,-7.054,0,0.124,0.682,2e-04,0.121,0.36,148.041,4
58156,"The Pointer Sisters","Automatic","['dance pop', 'dance rock', 'disco', 'europop', 'girl group', 'hi-nrg', 'mellow gold', 'motown', 'new wave pop', 'quiet storm', 'soft rock']",366360,FALSE,0.776,0.669,5,-8.811,1,0.0662,0.0236,1.83e-05,0.0863,0.915,111.116,4
85691,"Andy Pratt","Avenging Annie","[]",307373,FALSE,0.435,0.802,10,-9.314,1,0.0792,0.0852,0.000877,0.26,0.842,165.821,4
71501,"Jimmy Reed","Aw Shucks, Hush Your Mouth","['blues', 'blues rock', 'chicago blues', 'electric blues', 'harmonica blues', 'rock-and-roll', 'traditional blues']",141506,FALSE,0.795,0.333,0,-11.348,1,0.0326,0.914,0.619,0.12,0.763,113.04,4
83656,"Letters To Cleo","Awake","['alternative pop', 'boston rock', 'candy pop', 'lilith', 'pop rock']",234626,FALSE,0.493,0.916,4,-7.173,1,0.0501,3.75e-05,2.41e-05,0.115,0.589,128.615,4
97793,"Darryl Worley","Awful, Beautiful Life","['contemporary country', 'country', 'country road', 'modern country rock']",232800,FALSE,0.624,0.774,2,-6.873,1,0.0327,0.0258,2.37e-06,0.0988,0.672,112.608,4
62446,"Crazy Frog","Axel F","['eurodance']",172695,FALSE,0.864,0.903,2,-3.258,1,0.0414,0.27,0.638,0.0791,0.741,138.043,4
32884,"Trina Featuring Ludacris","B R Right","['deep pop r&b', 'hip pop', 'miami hip hop', 'pop rap', 'r&b', 'rap', 'rap latina', 'southern hip hop', 'trap', 'trap queen']",261986,TRUE,0.702,0.78,9,-5.379,1,0.168,0.0956,0,0.105,0.375,135.991,4
63893,"Megan Thee Stallion","B.I.T.C.H.","['houston rap', 'pop', 'pop rap', 'trap queen']",183142,TRUE,0.742,0.731,11,-4.362,0,0.306,0.0851,0,0.131,0.547,174.019,4
70132,"Badfinger","Baby Blue","['album rock', 'art rock', 'blues rock', 'bubblegum pop', 'classic rock', 'classic uk pop', 'folk rock', 'jangle pop', 'mellow gold', 'power pop', 'psychedelic rock', 'rock', 'roots rock', 'soft rock', 'symphonic rock']",217346,FALSE,0.623,0.877,11,-7.788,1,0.066,0.0186,0.0144,0.0729,0.517,124.432,4
6748,"The Echoes","Baby Blue","['jazz funk', 'soul jazz']",156813,FALSE,0.5,0.373,7,-13.548,1,0.0275,0.779,0,0.0667,0.727,132.368,4
20431,"Beyonce Featuring Sean Paul","Baby Boy","['dance pop', 'pop', 'pop rap', 'r&b']",244826,FALSE,0.655,0.488,1,-9.17,1,0.22,0.0825,1.16e-06,0.221,0.791,91.025,4
88673,"50 Cent Featuring Ne-Yo","Baby By Me","['east coast hip hop', 'gangster rap', 'hip hop', 'pop rap', 'queens hip hop', 'rap']",213360,TRUE,0.637,0.827,0,-4.721,0,0.0773,0.00462,0.0116,0.0276,0.345,190.097,4
11096,"Player","Baby Come Back","['country rock', 'soft rock', 'yacht rock']",214373,FALSE,0.645,0.604,5,-9.904,0,0.118,0.0713,0,0.129,0.545,156.436,4
18473,"Smokey Robinson","Baby Come Close","['classic soul', 'disco', 'funk', 'motown', 'quiet storm', 'soul', 'southern soul']",297866,FALSE,0.425,0.37,11,-12.617,1,0.0326,0.889,0.491,0.192,0.309,125.482,4
72787,"Gladys Knight And The Pips","Baby Don't Change Your Mind","['adult standards', 'brill building pop', 'classic soul', 'disco', 'funk', 'motown', 'quiet storm', 'soul', 'southern soul']",194200,FALSE,0.664,0.759,0,-7.735,1,0.0546,0.537,3.56e-05,0.105,0.772,113.013,4
7211,"Milli Vanilli","Baby Don't Forget My Number","['new jack swing']",249640,FALSE,0.851,0.649,6,-12.877,0,0.0748,0.00543,0.0029,0.156,0.846,100.302,4
39619,"Karla Bonoff","Baby Don't Go","['folk', 'mellow gold', 'soft rock']",195493,FALSE,0.743,0.706,0,-8.495,1,0.0589,0.24,0,0.0645,0.814,118.172,4
57603,"Sonny & Cher","Baby Don't Go","['deep groove house', 'deep house', 'disco house', 'house', 'uk dance']",194400,FALSE,0.54,0.492,0,-9.087,1,0.0286,0.473,0,0.046,0.552,121.832,4
17440,"Gwen Stefani","Baby Don't Lie","['dance pop', 'europop', 'hip pop', 'pop', 'pop rock', 'post-teen pop']",202533,FALSE,0.688,0.551,10,-5.49,0,0.0315,0.0118,0.226,0.102,0.274,99.964,4
22628,"Faith, Hope And Charity","Baby Don't Take Your Love","['contemporary country', 'country', 'country dawn', 'country road', 'pop rock']",172773,FALSE,0.585,0.875,0,-6.243,0,0.0399,0.497,0,0.131,0.862,99.13,4
52108,"Aretha Franklin","Baby I Love You","['classic soul', 'jazz blues', 'memphis soul', 'soul', 'southern soul']",164266,FALSE,0.681,0.261,0,-17.347,1,0.0326,0.625,2.09e-06,0.247,0.795,91.357,4
29115,"Rod Stewart","Baby Jane","['adult standards', 'mellow gold', 'soft rock']",283493,FALSE,0.641,0.796,2,-8.56,0,0.0407,0.0137,0.000115,0.358,0.727,123.229,4
70287,"Regina","Baby Love","['acoustic pop', 'chamber pop', 'indie pop', 'lilith', 'piano rock', 'pop rock']",217586,FALSE,0.741,0.582,2,-6.69,0,0.0417,0.168,1.14e-06,0.181,0.828,97.846,4
33908,"The Flying Machine","Baby Make It Soon","[]",172608,FALSE,0.461,0.538,4,-9.079,1,0.0293,0.736,0.00321,0.156,0.783,89.329,4
18490,"Fantasia","Baby Mama","['dance pop', 'deep pop r&b', 'hip pop', 'neo soul', 'pop rap', 'quiet storm', 'r&b', 'urban contemporary']",255786,FALSE,0.658,0.713,9,-6.83,1,0.0716,0.062,0,0.0402,0.447,81.98,4
19613,"Slim Harpo","Baby Scratch My Back","['acoustic blues', 'blues', 'electric blues', 'harmonica blues', 'louisiana blues', 'rhythm and blues', 'rock-and-roll', 'swamp blues', 'traditional blues']",173600,FALSE,0.808,0.471,5,-9.851,1,0.0386,0.388,0.841,0.0619,0.932,122.269,4
88949,"Glenn Yarbrough","Baby The Rain Must Fall","['american folk revival', 'traditional folk']",139040,FALSE,0.56,0.529,4,-10.105,1,0.0303,0.873,0,0.361,0.498,109.787,4
47776,"Mickey & Sylvia","Baby You're So Fine","['desi pop', 'modern bollywood', 'punjabi pop']",129000,FALSE,0.715,0.739,9,-9.675,1,0.0475,0.8,0.000817,0.301,0.96,119.624,4
63352,"Smokey Robinson & The Miracles","Baby, Baby Don't Cry","['classic soul', 'disco', 'funk', 'motown', 'quiet storm', 'soul', 'southern soul']",242466,FALSE,0.508,0.354,7,-13.277,0,0.0254,0.484,0,0.11,0.662,92.943,4
23688,"John Denver","Baby, You Look Good To Me Tonight","['adult standards', 'classic country pop', 'folk', 'folk rock', 'mellow gold', 'soft rock']",166853,FALSE,0.661,0.431,7,-11.38,1,0.0361,0.667,0,0.0766,0.742,122.565,4
10835,"Connie Francis","Baby's First Christmas","['adult standards', 'brill building pop', 'easy listening', 'lounge', 'rock-and-roll', 'rockabilly']",145766,FALSE,0.41,0.218,6,-10.693,1,0.0272,0.717,0,0.27,0.439,96.57,4
87463,"Ashanti","Baby","['dance pop', 'hip hop', 'hip pop', 'pop', 'pop rap', 'r&b', 'rap', 'urban contemporary']",209120,FALSE,0.712,0.805,4,-3.142,0,0.0739,0.433,0,0.179,0.851,94.973,4
92449,"Aaliyah","Back & Forth","['dance pop', 'hip hop', 'hip pop', 'pop', 'pop rap', 'r&b', 'urban contemporary']",231093,FALSE,0.706,0.727,5,-8.06,1,0.0317,0.0698,5.31e-06,0.115,0.903,92.938,4
19860,"Genya Ravan","Back In My Arms Again","[]",278160,FALSE,0.583,0.91,0,-5.765,1,0.0411,0.216,0,0.74,0.569,120.442,4
51337,"Robbie Nevil","Back On Holiday","['new wave pop']",239626,FALSE,0.77,0.599,8,-14.237,1,0.0335,0.0577,0.000907,0.043,0.957,99.95,4
58619,"The Babys","Back On My Feet Again","['album rock', 'classic rock', 'hard rock', 'mellow gold', 'rock', 'soft rock']",198733,FALSE,0.521,0.678,9,-6.811,1,0.0354,0.0811,0,0.118,0.504,121.848,4
15596,"Mike Jones","Back Then","['dirty south rap', 'gangster rap', 'hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",244186,TRUE,0.776,0.736,9,-6.308,1,0.255,0.0101,0,0.18,0.536,159.838,4
38731,"Chris Brown","Back To Sleep","['dance pop', 'pop', 'pop rap', 'r&b', 'rap']",201253,TRUE,0.647,0.646,9,-5.483,0,0.243,0.0424,0,0.0888,0.721,92.981,4
57427,"Daryl Hall John Oates","Back Together Again","['album rock', 'classic rock', 'mellow gold', 'rock', 'soft rock', 'yacht rock']",203906,FALSE,0.593,0.736,9,-6.494,0,0.0586,0.166,1.98e-05,0.298,0.757,121.222,4
35436,"Tim McGraw","Back When","['contemporary country', 'country', 'country road']",269893,FALSE,0.604,0.759,7,-4.822,1,0.0279,0.0627,0,0.321,0.663,136.045,4
22942,"Pardison Fontaine Featuring Cardi B","Backin' It Up","['nyc rap', 'rap']",190466,TRUE,0.796,0.68,10,-4.853,0,0.353,0.0886,0,0.268,0.565,164.932,4
16254,"Granger Smith","Backroad Song","['contemporary country', 'country', 'country road', 'modern country rock', 'redneck', 'texas country']",236786,FALSE,0.488,0.833,11,-6.571,1,0.0437,0.0352,0.0172,0.34,0.751,174.006,4
76582,"Meat Puppets","Backwater","['alternative rock', 'cowpunk', 'experimental rock', 'grunge', 'lo-fi', 'post-hardcore', 'post-punk', 'punk']",220533,FALSE,0.484,0.821,9,-6.564,1,0.0435,0.199,0.00191,0.195,0.541,111.931,4
70212,"Young Thug Featuring Lil Baby","Bad Bad Bad","['atl hip hop', 'atl trap', 'gangster rap', 'melodic rap', 'pop rap', 'rap', 'trap']",149040,TRUE,0.974,0.596,6,-8.888,1,0.184,0.0976,0,0.151,0.892,111.959,4
52527,"Taylor Swift Featuring Kendrick Lamar","Bad Blood","['pop', 'post-teen pop']",211933,FALSE,0.652,0.802,7,-6.114,1,0.181,0.0871,6.45e-06,0.148,0.295,170.157,4
31247,"Ray Parker Jr.","Bad Boy","['disco']",254520,FALSE,0.885,0.586,7,-9.487,0,0.0334,0.354,0.065,0.043,0.956,118.749,4
24961,"Cat Stevens","Bad Brakes","['british folk', 'classic rock', 'folk', 'folk rock', 'mellow gold', 'rock', 'roots rock', 'singer-songwriter', 'soft rock']",207546,FALSE,0.789,0.453,2,-12.618,1,0.0307,0.0541,0.0124,0.141,0.613,113.267,4
29630,"Alvin And The Chipmunks","Bad Day","[""children's music""]",214666,FALSE,0.692,0.663,9,-3.955,1,0.029,0.176,0.142,0.171,0.315,139.995,4
96961,"Neil Sedaka","Bad Girl","['adult standards', 'brill building pop', 'bubblegum pop', 'lounge', 'mellow gold', 'rockabilly', 'soft rock']",158493,FALSE,0.625,0.502,7,-9.229,1,0.0273,0.246,0,0.614,0.965,102.389,4
7617,"Maxwell","Bad Habits","['dance pop', 'funk', 'hip pop', 'neo soul', 'new jack swing', 'quiet storm', 'r&b', 'soul', 'urban contemporary']",352280,FALSE,0.661,0.67,11,-7.645,0,0.258,0.0873,2.01e-06,0.0794,0.661,148.02,4
66975,"Imagine Dragons","Bad Liar","['modern rock']",260773,FALSE,0.383,0.637,3,-6.993,1,0.0703,0.0722,0,0.368,0.0827,177.913,4
28357,"Freedy Johnston","Bad Reputation","['jangle pop', 'power pop']",248560,FALSE,0.608,0.677,4,-9.951,0,0.0246,0.0058,0.000537,0.266,0.787,114.046,4
12472,"B2K Featuring Fabolous","Badaboom","['boy band', 'dance pop', 'hip pop', 'pop rap', 'r&b', 'southern hip hop', 'urban contemporary']",221066,FALSE,0.812,0.626,4,-5.025,0,0.149,0.0238,0.000699,0.149,0.811,96.006,4
26871,"Ying Yang Twins Featuring Mike Jones & Mr. ColliPark","Badd","['atl hip hop', 'crunk', 'dance pop', 'dirty south rap', 'gangster rap', 'hip hop', 'hip pop', 'pop rap', 'rap', 'southern hip hop', 'trap']",215933,TRUE,0.554,0.846,8,-5.932,1,0.387,0.0642,0,0.401,0.765,100.141,4
25044,"Michael Jackson","Bad","['pop', 'r&b', 'soul']",247360,FALSE,0.787,0.889,8,-3.786,1,0.0397,0.00462,0.423,0.0665,0.394,114.091,4
51243,"Wale Featuring Rick Ross, Meek Mill & T-Pain","Bag Of Money","['hip hop', 'pop', 'pop rap', 'rap', 'southern hip hop', 'trap']",247293,TRUE,0.536,0.56,8,-5.668,1,0.26,0.0379,0,0.114,0.279,139.91,4
99970,"Mustard featuring NAV, Playboi Carti & A Boogie Wit da Hoodie","Baguettes In The Face","['cali rap', 'pop rap', 'rap', 'southern hip hop', 'trap']",174100,TRUE,0.883,0.525,2,-8.054,0,0.0633,0.189,0,0.0971,0.312,99.978,4
41619,"Selena Gomez With Rauw Alejandro","Baila Conmigo",NA,186087,FALSE,0.823,0.544,5,-7.132,1,0.0715,0.0215,0.00315,0.0966,0.664,149.903,4
47151,"The Astronauts","Baja","[]",146146,FALSE,0.407,0.794,6,-11.547,0,0.0402,0.00205,0.119,0.0763,0.584,155.153,4
5162,"Gerry Rafferty","Baker Street","['album rock', 'art rock', 'classic rock', 'classic uk pop', 'country rock', 'folk', 'folk rock', 'mellow gold', 'soft rock']",365626,FALSE,0.497,0.349,7,-14,1,0.0297,0.0929,0.028,0.259,0.421,113.762,4
87920,"T.I. Featuring Lil Wayne","Ball","['atl hip hop', 'dance pop', 'dirty south rap', 'gangster rap', 'hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",205360,TRUE,0.772,0.885,1,-4.736,1,0.0847,0.193,9.48e-06,0.0953,0.512,94.98,4
23563,"Freda Payne","Band Of Gold","['classic soul', 'motown']",182533,FALSE,0.631,0.746,7,-5.439,1,0.0277,0.451,0,0.424,0.93,108.875,4
46589,"Mel Carter","Band Of Gold","[]",137693,FALSE,0.356,0.393,0,-9.834,1,0.0297,0.766,0,0.367,0.425,82.513,4
18710,"Juice WRLD & YoungBoy Never Broke Again","Bandit","['chicago rap', 'melodic rap']",189322,TRUE,0.474,0.631,5,-5.884,0,0.343,0.0687,0,0.132,0.425,180.051,4
40727,"Juicy J Featuring Lil Wayne & 2 Chainz","Bandz A Make Her Dance","['crunk', 'dirty south rap', 'gangster rap', 'hip hop', 'memphis hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",278826,TRUE,0.871,0.743,2,-5.442,1,0.277,0.00212,0,0.141,0.576,130.977,4
76061,"T-Pain Featuring Lil Wayne","Bang Bang Pow Pow","['dance pop', 'hip hop', 'pop', 'pop rap', 'r&b', 'rap', 'southern hip hop', 'trap', 'urban contemporary']",219773,TRUE,0.436,0.61,9,-5.685,1,0.134,0.00171,0,0.217,0.0972,141.951,4
40742,"David Sanborn","Bang Bang","['jazz funk', 'jazz fusion', 'jazz saxophone', 'smooth jazz', 'smooth saxophone']",277431,FALSE,0.716,0.915,10,-8.153,1,0.0343,0.589,0.000871,0.351,0.96,127.074,4
93059,"Jessie J, Ariana Grande & Nicki Minaj","Bang Bang","['australian pop', 'dance pop', 'pop', 'pop rap', 'post-teen pop', 'uk pop', 'viral pop']",199386,FALSE,0.706,0.786,0,-3.417,0,0.0909,0.26,0,0.38,0.749,150.035,4
23033,"Nicki Minaj","Barbie Dreams","['dance pop', 'hip pop', 'pop', 'pop rap', 'post-teen pop', 'queens hip hop', 'rap']",279866,TRUE,0.855,0.787,8,-4.134,0,0.334,0.313,0,0.194,0.702,88.003,4
12073,"Heart","Barracuda","['folk-pop', 'indie folk', 'indie pop', 'neo mellow', 'new americana', 'seattle indie', 'stomp and holler']",261933,FALSE,0.547,0.691,4,-13.553,0,0.0369,0.015,0.105,0.144,0.667,137.148,4
99760,"Depeche Mode","Barrel Of A Gun","['dance rock', 'new romantic', 'new wave', 'permanent wave', 'synthpop']",336293,FALSE,0.522,0.949,4,-5.216,1,0.073,0.0221,0.00286,0.0615,0.707,165.872,4
32780,"Rehab","Bartender Song","['post-grunge', 'rap rock', 'redneck']",229040,TRUE,0.692,0.689,4,-5.988,1,0.0461,0.111,0,0.343,0.641,75.983,4
82728,"Lady Antebellum","Bartender","['contemporary country', 'country', 'country dawn', 'country pop', 'country road']",198266,FALSE,0.626,0.936,11,-3.86,0,0.036,0.016,4.41e-06,0.337,0.656,101.01,4
88362,"Cardi B Featuring 21 Savage","Bartier Cardi","['pop', 'pop rap', 'rap']",224284,TRUE,0.908,0.524,1,-7.955,1,0.181,0.00111,0.000678,0.383,0.109,138.015,4
32066,"Dickie Goodman","Batman & His Grandmother","['novelty', 'parody']",162373,FALSE,0.489,0.786,11,-5.172,0,0.361,0.816,0,0.38,0.619,66.588,3
82623,"Neal Hefti","Batman Theme","['classic soundtrack', 'space age pop']",138666,FALSE,0.561,0.98,7,-3.373,1,0.035,0.168,0.773,0.264,0.851,151.919,4
28329,"Harpers Bizarre","Battle Of New Orleans","['bubblegum pop', 'sunshine pop']",151933,FALSE,0.47,0.579,4,-12.316,1,0.0589,0.638,1.37e-06,0.119,0.842,179.86,4
52308,"Ariana Grande","Be Alright","['dance pop', 'pop', 'post-teen pop']",174604,FALSE,0.813,0.456,1,-7.667,0,0.0685,0.169,2.85e-06,0.105,0.587,108.801,4
12637,"Raphael Saadiq Featuring D'Angelo","Be Here","['funk', 'hip hop', 'neo soul', 'r&b', 'soul', 'urban contemporary']",228973,FALSE,0.643,0.59,6,-5.952,0,0.298,0.265,0,0.0755,0.698,87.57,4
16697,"Grover Washington, Jr.","Be Mine (Tonight)","['jazz funk', 'smooth jazz']",384226,FALSE,0.766,0.31,0,-15.073,1,0.0497,0.12,4.97e-05,0.122,0.421,113.283,4
93191,"Neil Diamond","Be Mine Tonight","['adult standards', 'brill building pop', 'folk', 'folk rock', 'mellow gold', 'singer-songwriter', 'soft rock', 'yacht rock']",158440,FALSE,0.578,0.465,10,-15.263,1,0.0625,0.242,0,0.0862,0.766,153.775,4
36977,"The Ronettes","Be My Baby","['adult standards', 'brill building pop', 'classic girl group', 'motown']",160906,FALSE,0.511,0.769,4,-7.032,1,0.042,0.181,0,0.0921,0.818,129.657,4
95167,"The Meters","Be My Lady","['afrobeat', 'classic soul', 'funk', 'instrumental soul', 'jazz funk', 'new orleans funk', 'soul', 'southern soul']",209200,FALSE,0.548,0.558,4,-10.663,0,0.0627,0.193,6.77e-06,0.104,0.881,86.477,4
24819,"The Bangles","Be With You","['album rock', 'dance rock', 'europop', 'jangle pop', 'mellow gold', 'new romantic', 'new wave', 'new wave pop', 'pop rock', 'rock', 'soft rock']",182973,FALSE,0.62,0.904,4,-5.475,0,0.0423,0.124,0,0.299,0.63,112.285,4
51406,"The Tams","Be Young, Be Foolish, Be Happy","['beach music', 'motown', 'northern soul']",126706,FALSE,0.523,0.5,10,-12.676,1,0.0421,0.824,0,0.0718,0.621,134.819,4
75138,"First Class","Beach Baby","[]",293453,FALSE,0.4,0.73,7,-9.633,1,0.054,0.000968,0.0179,0.0612,0.442,134.602,4
56217,"Roger Smith","Beach Time","['deep smooth jazz', 'smooth jazz']",119466,FALSE,0.583,0.287,8,-13.285,1,0.0442,0.742,0,0.106,0.582,128.898,4
93085,"A Boogie Wit da Hoodie Featuring PnB Rock & YoungBoy Never Broke Again","Beast Mode","['melodic rap', 'pop rap', 'rap', 'trap']",258158,TRUE,0.611,0.478,0,-5.839,1,0.107,0.035,0,0.107,0.138,172.076,4
39100,"Starship","Beat Patrol","['album rock', 'dance rock', 'mellow gold', 'new romantic', 'new wave', 'new wave pop', 'soft rock']",265666,FALSE,0.633,0.88,8,-6.566,1,0.0472,0.0434,0.000201,0.0741,0.976,154.058,4
58860,"Luke Combs","Beautiful Crazy","['contemporary country']",193200,FALSE,0.552,0.402,11,-7.431,1,0.0262,0.676,0,0.0928,0.382,103.313,4
99354,"Lee DeWyze","Beautiful Day","['idol', 'neo mellow']",237520,FALSE,0.483,0.79,0,-4.872,1,0.0517,0.0198,3.14e-05,0.143,0.29,135.121,4
34359,"Zac Brown Band","Beautiful Drug","['contemporary country', 'country', 'country road', 'modern country rock']",191600,FALSE,0.61,0.857,8,-5.267,0,0.0877,0.0424,2e-06,0.128,0.373,125.838,4
68758,"INXS","Beautiful Girl","['australian rock', 'dance rock', 'funk rock', 'mellow gold', 'new romantic', 'new wave', 'new wave pop', 'rock', 'soft rock']",207546,FALSE,0.675,0.666,11,-6.067,1,0.027,0.0187,0.692,0.112,0.434,120.558,4
7946,"Polo G","Beautiful Pain (Losin My Mind)","['chicago rap']",171441,TRUE,0.597,0.477,1,-9.638,0,0.642,0.137,0,0.113,0.512,80.382,4
14945,"Eminem Featuring Sia","Beautiful Pain","['detroit hip hop', 'g funk', 'hip hop', 'rap']",265025,TRUE,0.685,0.815,11,-4.494,0,0.459,0.0616,0,0.154,0.4,165.369,4
5907,"Kid Cudi","Beautiful Trip","['hip hop', 'ohio hip hop', 'rap']",37013,FALSE,0.331,0.513,11,-15.392,0,0.632,0.972,0.953,0.882,0.42,133.971,4
6095,"Akon Featuring Colby O'Donis & Kardinal Offishall","Beautiful","['dance pop', 'pop', 'pop rap']",312986,FALSE,0.739,0.938,0,-4.446,0,0.0868,0.131,0,0.124,0.655,130.018,4
2324,"Christina Aguilera","Beautiful","['dance pop', 'pop', 'post-teen pop', 'r&b']",238560,FALSE,0.457,0.573,5,-3.866,0,0.0275,0.578,3.05e-06,0.114,0.0992,76.193,4
94653,"Eminem","Beautiful","['detroit hip hop', 'g funk', 'hip hop', 'rap']",392826,TRUE,0.724,0.685,5,-4.413,0,0.0768,0.266,0,0.0771,0.524,132.09,4
18836,"Tory Lanez Featuring Snoop Dogg","Beauty In The Benz","['canadian hip hop', 'melodic rap', 'pop rap', 'rap', 'toronto rap', 'trap']",237452,TRUE,0.72,0.517,10,-9.191,1,0.369,0.199,0,0.164,0.445,119.952,5
84212,"6ix9ine Featuring Anuel AA","BEBE","['emo rap', 'trap']",217822,TRUE,0.635,0.902,0,-3.559,1,0.109,0.172,0,0.125,0.286,102.063,4
91285,"Afroman","Because I Got High","['gangster rap', 'hip hop', 'rap']",197760,TRUE,0.8,0.339,7,-8.531,1,0.483,0.166,0,0.0791,0.844,165.982,4
18478,"Chris Montez","Because Of You","['adult standards', 'brill building pop', 'bubblegum pop', 'merseybeat', 'rock-and-roll']",147043,FALSE,0.563,0.546,9,-12.239,0,0.0445,0.521,0,0.982,0.68,135.263,4
9040,"Patti Smith Group","Because The Night","['art pop', 'art rock', 'dance rock', 'folk rock', 'permanent wave', 'protopunk', 'rock']",205386,FALSE,0.443,0.797,11,-5.329,0,0.0351,0.0526,0,0.0997,0.521,123.428,4
20690,"Antoine Dodson & The Gregory Brothers Featuring Kelly Dodson","Bed Intruder Song","[]",185526,TRUE,0.692,0.783,7,-4.271,0,0.224,0.687,0,0.244,0.879,75.998,4
3784,"Midnight Oil","Beds Are Burning","['australian alternative rock', 'australian rock', 'dance rock', 'rock']",255680,FALSE,0.753,0.427,0,-11.112,1,0.0387,0.00787,0.00065,0.058,0.295,119.18,4
98056,"Madonna","Bedtime Story","['dance pop', 'pop']",292906,FALSE,0.712,0.612,0,-12.74,1,0.0441,0.831,0.441,0.118,0.526,112.028,4
65663,"Luke Combs","Beer Never Broke My Heart","['contemporary country']",186733,FALSE,0.54,0.863,1,-4.483,1,0.0481,0.0138,0,0.0874,0.64,77,4
30611,"Toby Keith","Beers Ago","['contemporary country', 'country', 'country road', 'oklahoma country']",206640,FALSE,0.565,0.84,0,-4.641,1,0.0296,0.0284,0,0.0928,0.742,144.04,4
94426,"Starship","Before I Go","['album rock', 'dance rock', 'mellow gold', 'new romantic', 'new wave', 'new wave pop', 'soft rock']",314853,FALSE,0.744,0.816,9,-4.968,1,0.0367,0.124,0,0.343,0.623,115.388,4
36743,"Beyonce","Before I Let Go","['dance pop', 'pop', 'pop rap', 'r&b']",240776,FALSE,0.713,0.842,6,-5.424,0,0.0984,0.0686,0,0.341,0.435,102.968,4
67060,"BLACKstreet","Before I Let You Go","['boy band', 'dance pop', 'hip hop', 'hip pop', 'neo soul', 'new jack swing', 'pop rap', 'quiet storm', 'r&b', 'rap', 'urban contemporary']",299800,FALSE,0.67,0.468,1,-6.725,0,0.0328,0.325,0,0.0516,0.486,140.069,4
94169,"Slick Rick","Behind Bars","['alternative hip hop', 'bronx hip hop', 'east coast hip hop', 'gangster rap', 'hardcore hip hop', 'hip hop', 'old school hip hop', 'rap', 'southern hip hop']",201960,FALSE,0.542,0.819,7,-6.204,1,0.379,0.105,0,0.221,0.647,190.282,4
98883,"Drake","Behind Barz","['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",163120,TRUE,0.854,0.554,8,-4.684,1,0.172,0.769,1.84e-06,0.0749,0.272,142.069,4
67468,"Cher","Behind The Door","['dance pop', 'hollywood', 'new wave pop', 'pop']",222946,FALSE,0.321,0.339,0,-11.312,0,0.0288,0.648,0,0.114,0.48,82.14,3
88127,"Kelly Clarkson","Behind These Hazel Eyes","['dance pop', 'neo mellow', 'pop', 'pop rock', 'post-teen pop', 'talent show']",198973,FALSE,0.548,0.889,9,-4.682,1,0.0382,0.00165,0.00109,0.197,0.425,90.048,4
93243,"The Grass Roots","Bella Linda","['brill building pop', 'bubblegum pop', 'classic rock', 'country rock', 'folk rock', 'mellow gold', 'merseybeat', 'soft rock', 'sunshine pop']",178906,FALSE,0.491,0.226,1,-14.035,1,0.034,0.376,0.000178,0.06,0.489,110.338,4
27792,"Lil Jon Featuring Tyga","Bend Ova","['atl hip hop', 'crunk', 'dance pop', 'dirty south rap', 'pop rap', 'southern hip hop']",226106,TRUE,0.855,0.968,1,-3.278,1,0.157,0.0143,0.0025,0.0988,0.798,103.005,4
91252,"Four Tops","Bernadette","['adult standards', 'brill building pop', 'classic soul', 'disco', 'funk', 'mellow gold', 'motown', 'quiet storm', 'soft rock', 'soul']",183373,FALSE,0.656,0.825,6,-7.549,1,0.03,0.152,0,0.1,0.748,111.077,4
67236,"Eminem","Berzerk","['detroit hip hop', 'hip hop', 'rap']",238746,TRUE,0.739,0.872,11,-4.059,0,0.333,0.0217,0,0.26,0.684,95.084,4
53031,"Drake","Best I Ever Had","['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",258760,TRUE,0.431,0.894,5,-2.673,0,0.33,0.0951,0,0.188,0.604,162.193,4
15257,"Gary Allan","Best I Ever Had","['contemporary country', 'country', 'country road', 'modern country rock']",251480,FALSE,0.273,0.59,6,-4.997,1,0.0295,0.00254,1.07e-06,0.108,0.214,174.863,4
29841,"Gavin DeGraw","Best I Ever Had","['acoustic pop', 'neo mellow', 'pop', 'pop rock']",226200,FALSE,0.547,0.932,7,-5.237,1,0.0968,0.00229,0,0.335,0.513,134.981,4
15204,"Travis Tritt","Best Of Intentions","['contemporary country', 'country', 'country road', 'country rock', 'outlaw country']",257399,FALSE,0.659,0.468,8,-7.439,1,0.0232,0.363,0,0.0964,0.37,99.066,4
61570,"Beyonce","Best Thing I Never Had","['dance pop', 'pop', 'pop rap', 'r&b']",253746,FALSE,0.545,0.649,6,-4.062,1,0.0324,0.143,1.57e-05,0.0894,0.297,99.099,4
41264,"Gladys Knight And The Pips","Best Thing That Ever Happened To Me","['adult standards', 'brill building pop', 'classic soul', 'disco', 'funk', 'motown', 'quiet storm', 'soul', 'southern soul']",224986,FALSE,0.352,0.545,1,-11.939,0,0.0871,0.309,0.0564,0.106,0.459,189.498,4
24761,"The Persuaders","Best Thing That Ever Happened To Me","['classic soul', 'motown', 'southern soul']",294999,FALSE,0.392,0.424,2,-11.022,1,0.0379,0.786,0.00636,0.125,0.404,74.02,4
20624,"B.o.B Featuring T.I. & Playboy Tre","Bet I","['atl hip hop', 'dance pop', 'hip hop', 'pop', 'pop rap', 'rap', 'southern hip hop']",257920,TRUE,0.825,0.877,6,-4.556,1,0.118,0.103,0,0.33,0.963,133.973,4
91811,"Johnny Lee","Bet Your Heart On Me","['classic country pop', 'country', 'country rock']",166866,FALSE,0.71,0.351,4,-14.737,1,0.0358,0.651,2.28e-06,0.121,0.611,119.255,4
48656,"Gloria Estefan & Miami Sound Machine","Betcha Say That","['dance pop', 'latin pop', 'new wave pop', 'soft rock']",276666,FALSE,0.812,0.696,3,-11.087,1,0.046,0.418,0.0103,0.471,0.863,124.995,4
11913,"Keith Urban","Better Life","['australian country', 'contemporary country', 'country', 'country road']",283160,FALSE,0.618,0.832,2,-3.535,1,0.0374,0.0402,1.58e-05,0.033,0.8,104.942,4
84453,"New Boyz Featuring Chris Brown","Better With The Lights Off","['dance pop', 'pop rap', 'southern hip hop']",219080,TRUE,0.573,0.848,7,-2.742,1,0.057,0.0521,0,0.25,0.561,112.084,4
51504,"Khalid","Better","['alternative r&b', 'pop']",229320,FALSE,0.596,0.552,0,-10.278,0,0.097,0.0765,0.334,0.104,0.112,97.949,4
57943,"Weezer","Beverly Hills","['alternative rock', 'modern rock', 'permanent wave', 'pop rock', 'post-grunge', 'rock']",196093,FALSE,0.693,0.823,5,-3.761,1,0.0726,0.0932,0,0.328,0.741,87.904,4
20397,"James Brown And The Famous Flames","Bewildered","['motown', 'soul']",146933,FALSE,0.468,0.4,5,-9.843,1,0.0322,0.461,0,0.112,0.43,104.929,1
89118,"Lou Christie","Beyond The Blue Horizon","['brill building pop', 'bubblegum pop', 'doo-wop', 'merseybeat', 'rock-and-roll']",224933,FALSE,0.241,0.487,10,-11.312,1,0.0322,0.566,0.144,0.0683,0.386,151.81,4
62188,"Bobby Darin","Beyond The Sea","['adult standards', 'brill building pop', 'easy listening', 'lounge', 'motown', 'rock-and-roll', 'rockabilly', 'soul', 'swing', 'vocal jazz']",172480,FALSE,0.521,0.516,2,-7.456,0,0.0369,0.723,0,0.257,0.569,136.483,4
20630,"Herb Alpert","Beyond","['adult standards', 'easy listening', 'lounge']",361226,FALSE,0.74,0.912,0,-11.916,1,0.0401,0.197,0.793,0.0745,0.703,126.652,4
19283,"Jimmy Dean","Big Bad John","['nashville sound']",182560,FALSE,0.516,0.457,8,-12.609,1,0.184,0.596,0,0.106,0.455,173.934,4
13294,"YG Featuring 2 Chainz, Big Sean & Nicki Minaj","Big Bank","['cali rap', 'hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",237240,TRUE,0.745,0.346,1,-7.709,1,0.331,0.00552,0,0.0881,0.112,203.911,4
83150,"Gucci Mane Featuring Kodak Black & London On Da Track","Big Boy Diamonds","['atl hip hop', 'dirty south rap', 'hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",151481,TRUE,0.883,0.635,0,-6.284,0,0.299,0.0307,0,0.114,0.542,129.042,4
88451,"Eddie Money","Big Crash","['album rock', 'classic rock', 'folk rock', 'hard rock', 'mellow gold', 'pop rock', 'rock', 'soft rock']",219440,FALSE,0.494,0.804,2,-5.759,1,0.0389,0.00328,0.00538,0.083,0.799,157.877,4
14433,"Alphaville","Big In Japan","['dance rock', 'europop', 'new romantic', 'new wave', 'new wave pop', 'synthpop']",286160,FALSE,0.748,0.414,2,-15.15,0,0.0405,0.069,0.0671,0.336,0.239,97.646,4
96483,"Goo Goo Dolls","Big Machine","['alternative rock', 'neo mellow', 'permanent wave', 'pop rock', 'post-grunge']",189546,FALSE,0.42,0.895,3,-4.155,1,0.0614,0.00103,0.000207,0.356,0.577,108.832,4
84487,"The Four Preps","Big Man","['deep adult standards', 'vocal harmony group']",143266,FALSE,0.523,0.509,3,-8.451,1,0.03,0.914,0,0.267,0.789,125.539,4
2057,"Megan Thee Stallion","Big Ole Freak","['houston rap', 'pop', 'pop rap', 'trap queen']",214850,TRUE,0.799,0.699,2,-7.694,1,0.204,0.00867,0,0.132,0.627,142.979,4
3864,"Coi Leray & Pooh Shiesty","Big Purr (Prrdd)",NA,116760,TRUE,0.774,0.412,1,-8.619,1,0.378,0.026,0,0.088,0.38,139.943,4
12380,"Claude King","Big River, Big Man","['cowboy western']",147133,FALSE,0.579,0.423,3,-10.761,1,0.0355,0.816,0,0.0859,0.815,150.772,4
88031,"Lou Christie","Big Time","['brill building pop', 'bubblegum pop', 'doo-wop', 'merseybeat', 'rock-and-roll']",124493,FALSE,0.426,0.675,8,-6.572,1,0.0286,0.132,0,0.316,0.813,152.98,4
8886,"Counting Crows Featuring Vanessa Carlton","Big Yellow Taxi","['alternative rock', 'neo mellow', 'pop rock', 'post-grunge', 'rock', 'singer-songwriter']",225573,FALSE,0.678,0.866,1,-4.341,1,0.048,0.00295,0,0.16,0.842,88.041,4
9815,"Quavo","Biggest Alley Oop","['atl hip hop', 'hip hop', 'melodic rap', 'pop rap', 'rap', 'southern hip hop', 'trap']",180960,TRUE,0.86,0.408,0,-5.389,1,0.189,0.166,0,0.111,0.0548,75.481,4
42318,"Ambrosia","Biggest Part Of Me","['adult standards', 'album rock', 'art rock', 'classic rock', 'country rock', 'folk rock', 'mellow gold', 'soft rock', 'symphonic rock', 'yacht rock']",324040,FALSE,0.498,0.723,10,-8.053,1,0.05,0.238,0,0.353,0.882,153.227,4
40788,"Rihanna Featuring Chris Brown","Birthday Cake","['barbadian pop', 'dance pop', 'pop', 'post-teen pop', 'r&b', 'urban contemporary']",78200,TRUE,0.702,0.826,3,-6.498,1,0.0529,0.32,0.000227,0.355,0.329,80.014,4
97586,"The Pixies Three","Birthday Party","['classic girl group']",131026,FALSE,0.534,0.491,11,-13.245,0,0.082,0.102,0,0.0758,0.914,169.45,4
89480,"Stephanie Mills","Bit By Bit (Theme From Fletch)","['disco', 'funk', 'motown', 'new jack swing', 'post-disco', 'quiet storm', 'r&b', 'soul', 'urban contemporary']",210306,FALSE,0.692,0.694,8,-9.797,1,0.0367,0.037,0.0613,0.227,0.754,134.648,4
25664,"Elton John","Bite Your Lip (Get up and dance!)","['glam rock', 'mellow gold', 'piano rock']",402866,FALSE,0.568,0.949,5,-6.858,1,0.0842,0.00915,0.00101,0.193,0.555,142.45,4
69309,"Melanie","Bitter Bad","['pop']",183666,FALSE,0.528,0.321,1,-13.86,1,0.154,0.972,0.000188,0.331,0.534,137.567,4
35891,"The Verve","Bitter Sweet Symphony","['alternative rock', 'britpop', 'modern rock', 'neo mellow', 'permanent wave', 'pop rock', 'rock', 'shoegaze']",357266,FALSE,0.356,0.917,9,-6.006,1,0.0479,0.0335,0,0.406,0.518,171.176,4
64699,"Olivia","Bizounce","['dance pop', 'electropop', 'pop', 'pop rap', 'post-teen pop']",264466,TRUE,0.785,0.539,7,-8.23,1,0.0505,0.0134,8.61e-06,0.0528,0.721,137.999,4
22970,"Goo Goo Dolls","Black Balloon","['alternative rock', 'neo mellow', 'permanent wave', 'pop rock', 'post-grunge']",249533,FALSE,0.339,0.625,1,-8.57,1,0.028,0.057,0.000102,0.229,0.334,104.68,4
80681,"Rae Sremmurd Featuring Gucci Mane","Black Beatles","['hip hop', 'melodic rap', 'pop rap', 'rap', 'southern hip hop', 'trap']",291893,TRUE,0.794,0.632,0,-6.163,1,0.0649,0.142,0,0.128,0.355,145.926,4
22630,"Ram Jam","Black Betty","['album rock', 'classic rock', 'rock', 'southern rock']",237893,FALSE,0.465,0.865,11,-9.573,0,0.098,0.018,0.00135,0.0769,0.677,117.528,4
12330,"Newcity Rockers","Black Dog","[]",238167,FALSE,0.55,0.747,9,-8.687,0,0.0328,0.000669,0.000414,0.0831,0.805,95.476,4
92279,"Bobby Bland","Black Night","['blues', 'electric blues', 'soul', 'soul blues', 'southern soul']",166506,FALSE,0.294,0.485,5,-10.691,1,0.0374,0.791,2.98e-06,0.0877,0.576,171.807,3
70418,"The Main Ingredient","Black Seeds Keep On Growing","['classic soul', 'disco', 'funk', 'jazz funk', 'motown', 'quiet storm', 'soul', 'southern soul']",211666,FALSE,0.426,0.797,3,-10.082,0,0.105,0.623,0,0.421,0.8,106.492,4
90053,"Mista","Blackberry Molasses","['baton rouge rap', 'deep southern trap']",246453,FALSE,0.765,0.387,0,-9.142,1,0.0283,0.26,7.57e-06,0.126,0.697,95.173,4
98405,"Jason Aldean","Blame It On You","['contemporary country', 'country', 'country road']",215360,FALSE,0.484,0.783,2,-5.334,1,0.0308,0.0957,0.000118,0.107,0.594,137.918,4
11710,"Rod Wave","Blame On You","['florida rap']",165925,TRUE,0.697,0.684,1,-7.272,0,0.187,0.264,0,0.0398,0.712,161.922,4
11824,"Calvin Harris Featuring John Newman","Blame","['dance pop', 'edm', 'electro house', 'house', 'pop', 'progressive house', 'tropical house', 'uk dance']",212960,FALSE,0.413,0.856,0,-4.078,0,0.0808,0.0289,0.00571,0.343,0.35,128.017,4
4178,"I Prevail","Blank Space","['nu-metalcore']",240927,FALSE,0.437,0.863,11,-5.28,0,0.0941,0.00302,0,0.144,0.233,194.073,4
13088,"Ty Dolla $ign Featuring Future & Rae Sremmurd","Blase","['hip hop', 'pop', 'pop rap', 'r&b', 'trap', 'trap soul']",285240,TRUE,0.897,0.642,2,-8.828,1,0.0534,0.0219,1.31e-06,0.159,0.291,127.984,4
68340,"Bobby Bland","Blind Man","['blues', 'electric blues', 'soul', 'soul blues', 'southern soul']",206426,FALSE,0.452,0.597,0,-6.776,0,0.0515,0.626,0,0.275,0.711,122.261,3
94956,"B.G. Featuring Baby, Turk, Mannie Fresh, Juvenile & Lil' Wayne","Bling Bling","['deep southern trap', 'dirty south rap', 'gangster rap', 'new orleans rap', 'rap', 'southern hip hop', 'trap']",312960,TRUE,0.868,0.964,2,-3.72,1,0.111,0.0467,1.51e-05,0.0708,0.868,98.913,4
7814,"Michael Jackson","Blood On The Dance Floor","['pop', 'r&b', 'soul']",253000,FALSE,0.807,0.741,1,-4.472,1,0.083,0.0135,0.0316,0.06,0.558,108.989,4
45539,"George Harrison","Blow Away","['album rock', 'classic rock', 'folk rock', 'mellow gold', 'psychedelic rock', 'rock', 'roots rock', 'soft rock']",240680,FALSE,0.643,0.633,2,-8.788,1,0.0316,0.303,0,0.119,0.228,115.246,4
82435,"P!nk","Blow Me (One Last Kiss)","['dance pop', 'pop', 'post-teen pop']",255586,TRUE,0.597,0.919,7,-2.954,1,0.044,0.000145,0,0.282,0.73,113.987,4
81727,"Bachman-Turner Overdrive","Blue Collar","['album rock', 'art rock', 'blues rock', 'classic canadian rock', 'classic rock', 'country rock', 'folk rock', 'hard rock', 'mellow gold', 'rock', 'roots rock', 'soft rock', 'symphonic rock']",372906,FALSE,0.64,0.371,9,-16.008,0,0.0418,0.285,0.0311,0.291,0.617,129.299,4
10344,"Willie Nelson","Blue Eyes Crying In The Rain","['classic country pop', 'country', 'nashville sound', 'outlaw country', 'singer-songwriter', 'texas country']",138693,FALSE,0.64,0.133,4,-12.726,1,0.0368,0.913,0.0509,0.112,0.376,117.61,4
63265,"Justin Hayward & John Lodge","Blue Guitar","['classic uk pop']",219826,FALSE,0.274,0.399,5,-12.484,1,0.0299,0.318,0.0695,0.211,0.3,127.356,3
22438,"David Bowie","Blue Jean","['album rock', 'art rock', 'classic rock', 'dance rock', 'glam rock', 'permanent wave', 'protopunk', 'rock']",191906,FALSE,0.559,0.849,2,-6.39,1,0.0308,0.0401,0.33,0.131,0.822,124.608,4
82986,"Yasmeen Featuring Ghostface Killah","Blue Jeans","[]",240866,FALSE,0.804,0.729,2,-3.232,1,0.0931,0.0823,0,0.323,0.827,99.876,4
65112,"The Marcels","Blue Moon","['adult standards', 'brill building pop', 'doo-wop', 'rhythm and blues', 'rock-and-roll', 'rockabilly']",135200,FALSE,0.621,0.43,7,-11.163,1,0.0343,0.69,0,0.075,0.938,127.74,4
50604,"Foreigner","Blue Morning, Blue Day","['album rock', 'classic rock', 'hard rock', 'mellow gold', 'rock', 'soft rock']",192973,FALSE,0.502,0.849,10,-8.573,0,0.0348,0.02,3.21e-06,0.696,0.53,119.126,4
90084,"Jim Reeves","Blue Side Of Lonesome","['adult standards', 'nashville sound', 'rock-and-roll']",199680,FALSE,0.527,0.185,9,-16.72,1,0.0302,0.806,0.00133,0.232,0.378,96.03,3
36202,"Midnight Oil","Blue Sky Mine","['australian alternative rock', 'australian rock', 'dance rock', 'rock']",255600,FALSE,0.631,0.852,1,-3.181,1,0.029,0.0601,0.000102,0.144,0.834,132.018,4
48876,"Bill Black's Combo","Blue Tango","[]",124920,FALSE,0.698,0.892,7,-2.343,1,0.0392,0.698,0.944,0.241,0.962,132.951,4
78439,"Bobby Vinton","Blue Velvet","['adult standards', 'brill building pop', 'bubblegum pop', 'easy listening', 'lounge', 'rock-and-roll']",168093,FALSE,0.376,0.246,10,-9.803,1,0.0286,0.862,0,0.155,0.282,80.167,1
65247,"The Moody Blues","Blue World","['album rock', 'art rock', 'british invasion', 'classic rock', 'classic uk pop', 'folk', 'folk rock', 'hard rock', 'mellow gold', 'progressive rock', 'psychedelic rock', 'rock', 'soft rock', 'symphonic rock']",319146,FALSE,0.658,0.697,9,-7.042,0,0.0364,0.354,1.8e-05,0.188,0.758,127.385,4
89741,"Fifth Harmony","Bo$$","['dance pop', 'girl group', 'pop', 'post-teen pop', 'talent show', 'viral pop']",171413,FALSE,0.813,0.872,9,-5.224,1,0.107,0.00621,0,0.0498,0.736,103.016,4
35161,"Nelly Featuring Ashanti & Akon","Body On Me","['dance pop', 'hip hop', 'pop', 'pop rap', 'rap', 'southern hip hop', 'urban contemporary']",209706,FALSE,0.654,0.643,7,-7.079,0,0.275,0.144,0,0.0956,0.784,180.193,4
52201,"Loud Luxury Featuring Brando","Body","['dance pop', 'edm', 'house', 'pop', 'tropical house']",163216,FALSE,0.752,0.764,1,-4.399,1,0.038,0.0476,9.44e-05,0.0543,0.582,121.958,4
6772,"Johnny Cash","Bonanza!","['arkansas country', 'outlaw country']",140306,FALSE,0.548,0.492,3,-10.72,1,0.0287,0.898,0.0393,0.152,0.802,102.62,4
24991,"Al Caiola And His Orchestra","Bonanza","[]",140453,FALSE,0.465,0.56,0,-11.7,1,0.0345,0.813,0.126,0.11,0.884,125.631,4
95342,"Preston Epps","Bongo Rock","[]",126320,FALSE,0.341,0.994,4,-9.022,1,0.0708,0.572,0.879,0.391,0.581,168.714,4
3492,"The Fantastic Johnny C","Boogaloo Down Broadway","['philly soul']",154173,FALSE,0.802,0.675,10,-5.811,1,0.0424,0.704,0,0.0631,0.962,130.7,4
910,"Jarreau","Boogie Down","['adult standards', 'jazz funk', 'quiet storm', 'smooth jazz', 'soft rock', 'vocal jazz', 'yacht rock']",252933,FALSE,0.913,0.476,0,-13.823,1,0.0531,0.283,0.00127,0.204,0.955,112.73,4
52815,"Heatwave","Boogie Nights","['brit funk', 'classic soul', 'disco', 'funk', 'jazz funk', 'motown', 'post-disco', 'quiet storm', 'soul', 'urban contemporary']",303533,FALSE,0.62,0.54,4,-14.636,0,0.0422,0.349,2.53e-05,0.187,0.759,118.823,4
51152,"A Taste Of Honey","Boogie Oogie Oogie","['disco', 'post-disco']",338133,FALSE,0.835,0.522,2,-10.828,0,0.0916,0.0991,0.00184,0.111,0.91,123.934,4
75791,"KC And The Sunshine Band","Boogie Shoes","['disco', 'funk', 'motown', 'soft rock']",132040,FALSE,0.931,0.801,4,-10.725,1,0.0548,0.496,0.379,0.0563,0.971,119.533,4
71638,"Bette Midler","Boogie Woogie Bugle Boy","['adult standards', 'mellow gold', 'new wave pop', 'soft rock']",137173,FALSE,0.658,0.647,0,-6.787,1,0.137,0.659,0,0.174,0.825,98.49,4
56406,"The Outhere Brothers","Boom Boom Boom","['eurodance', 'hip house']",201893,FALSE,0.723,0.857,7,-9.989,1,0.241,0.0523,2.66e-05,0.149,0.642,129.87,4
35128,"Vengaboys","Boom, Boom, Boom, Boom!!","['bubblegum dance', 'dance pop', 'eurodance', 'europop']",201840,FALSE,0.8,0.894,6,-7.346,0,0.04,0.0108,0.437,0.0285,0.967,138.48,4
46618,"Jazzy Jeff & The Fresh Prince","Boom! Shake The Room","['gangster rap', 'hip hop', 'old school hip hop', 'philly rap', 'rap']",226200,FALSE,0.792,0.964,1,-5.405,1,0.154,0.0698,0,0.302,0.621,99.771,4
76070,"Randy Houser","Boots On","['contemporary country', 'country', 'country road', 'modern country rock', 'redneck']",170813,FALSE,0.712,0.89,8,-4.418,1,0.035,0.0558,4.1e-06,0.294,0.853,112.033,4
56503,"Elton John","Border Song","['glam rock', 'mellow gold', 'piano rock']",202066,FALSE,0.434,0.297,0,-11.042,1,0.0287,0.763,2.73e-06,0.0898,0.289,130.388,4
10821,"Sandy Posey","Born A Woman","['merseybeat', 'nashville sound', 'rock-and-roll']",120453,FALSE,0.75,0.456,0,-9.47,1,0.029,0.685,1.03e-06,0.134,0.939,114.501,4
66130,"Sam & Dave","Born Again","['pop', 'uk pop']",272160,FALSE,0.602,0.403,1,-11.32,1,0.0248,0.823,0.126,0.112,0.392,106.314,4
63061,"Bruce Springsteen","Born In The USA","['heartland rock', 'mellow gold', 'permanent wave', 'rock', 'singer-songwriter']",356714,FALSE,0.19,0.964,9,-3.876,1,0.0927,0.0278,0,0.959,0.139,120.399,4
34497,"Patrick Hernandez","Born To Be Alive","['disco', 'hi-nrg']",188133,FALSE,0.704,0.867,2,-5.808,1,0.0315,0.0846,0,0.206,0.809,131.467,4
98131,"Bon Jovi","Born To Be My Baby","['glam metal', 'rock']",280106,FALSE,0.534,0.959,7,-4.289,1,0.0379,0.0089,0,0.347,0.756,131.278,4
8226,"Justin Bieber","Born To Be Somebody","['canadian pop', 'dance pop', 'pop', 'post-teen pop']",181026,FALSE,0.674,0.612,1,-5.237,1,0.0293,0.194,0,0.0493,0.31,117.93,4
4565,"Bruce Springsteen","Born To Run","['heartland rock', 'mellow gold', 'permanent wave', 'rock', 'singer-songwriter']",269920,FALSE,0.27,0.944,4,-4.199,1,0.0975,0.00501,2.05e-05,0.116,0.606,146.347,4
55876,"Rare Earth","Born To Wander","['blues rock', 'classic rock', 'motown']",202533,FALSE,0.562,0.8,2,-7.24,1,0.0409,0.287,2.52e-06,0.548,0.817,153.444,4
38353,"The Carters","Boss","['pop', 'pop rap', 'r&b', 'rap', 'urban contemporary']",244133,TRUE,0.813,0.488,11,-7.737,0,0.257,0.187,0.000132,0.231,0.688,139.983,4
843,"Stone Sour","Bother","['alternative metal', 'groove metal', 'nu metal', 'post-grunge', 'rock']",240400,TRUE,0.272,0.281,1,-7.634,1,0.0287,0.388,2.29e-05,0.158,0.141,89.914,4
38216,"The Fireballs","Bottle Of Wine","[]",130226,FALSE,0.65,0.8,9,-8.202,1,0.0321,0.00849,0.155,0.0678,0.956,136.2,4
82974,"Juicy J Featuring Wale & Trey Songz","Bounce It","['crunk', 'dirty south rap', 'gangster rap', 'hip hop', 'memphis hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",260560,TRUE,0.785,0.572,11,-9.383,1,0.0859,0.00811,0,0.111,0.477,140.032,4
99503,"The Everly Brothers","Bowling Green","['adult standards', 'brill building pop', 'bubblegum pop', 'folk rock', 'lounge', 'mellow gold', 'rock-and-roll', 'rockabilly', 'sunshine pop']",166946,FALSE,0.544,0.554,7,-11.789,1,0.037,0.695,0.000639,0.388,0.633,123.523,4
97201,"Tia","Boy Toy","['anime', 'otacore']",249213,FALSE,0.729,0.761,5,-9.108,0,0.0375,0.0201,3.28e-05,0.0731,0.918,120.716,4
77066,"SaFire","Boy, I've Been Told","['freestyle']",375386,FALSE,0.7,0.623,4,-11.604,1,0.0516,0.000744,0.0109,0.0645,0.72,119.798,4
73071,"Looking Glass","Brandy (You're A Fine Girl)","['soft rock', 'sunshine pop']",186826,FALSE,0.719,0.768,1,-7.528,0,0.0766,0.54,1.59e-05,0.146,0.772,125.315,4
58202,"21 Savage","Break Da Law","['atl hip hop', 'pop rap', 'rap', 'trap']",177747,TRUE,0.904,0.575,1,-7.823,1,0.346,0.0493,0,0.256,0.359,141.039,4
701,"Tina Turner","Break Every Rule","['disco', 'europop', 'mellow gold', 'new wave pop', 'soft rock']",242133,FALSE,0.653,0.625,3,-13.594,1,0.0285,0.00459,0.00256,0.0897,0.978,123.946,4
35890,"Britney Spears","Break The Ice","['dance pop', 'pop', 'post-teen pop']",196053,FALSE,0.712,0.911,5,-3.866,0,0.0445,0.689,8.02e-06,0.107,0.85,117.533,4
27716,"Cole Swindell","Break Up In The End","['contemporary country', 'country', 'country road', 'modern country rock']",199693,FALSE,0.507,0.372,1,-8.433,1,0.0303,0.481,0,0.271,0.257,86.422,4
2325,"Cynthia","Break Up To Make Up","[]",237093,FALSE,0.4,0.28,4,-13.412,1,0.0343,0.522,0,0.193,0.149,121.488,4
89023,"Del Shannon","Break Up","['adult standards', 'brill building pop', 'bubblegum pop', 'doo-wop', 'folk rock', 'merseybeat', 'rock-and-roll', 'rockabilly']",139786,FALSE,0.497,0.863,7,-5.291,1,0.0342,0.291,0,0.154,0.904,114.047,4
32201,"Taio Cruz Featuring Ludacris","Break Your Heart","['dance pop', 'edm', 'pop', 'pop rap', 'post-teen pop']",186266,FALSE,0.666,0.899,8,-4.676,1,0.028,0.00155,0,0.0677,0.629,122.05,4
33013,"Seduction","Breakdown","['freestyle']",301893,FALSE,0.789,0.898,10,-9.679,0,0.0708,0.334,0,0.329,0.758,106.813,4
66566,"Tom Petty And The Heartbreakers","Breakdown","['album rock', 'classic rock', 'folk rock', 'hard rock', 'heartland rock', 'mellow gold', 'pop rock', 'psychedelic rock', 'rock', 'roots rock', 'soft rock']",163893,FALSE,0.625,0.35,9,-8.395,0,0.0436,0.398,6.76e-05,0.123,0.69,113.688,4
45181,"Outlaws","Breaker - Breaker","['album rock', 'blues rock', 'classic rock', 'country rock', 'hard rock', 'mellow gold', 'rock', 'soft rock', 'southern rock']",177000,FALSE,0.532,0.637,5,-8.006,1,0.0831,0.679,0,0.153,0.699,147.624,4
12053,"The Script","Breakeven","['celtic rock', 'neo mellow', 'pop', 'pop rock', 'post-teen pop', 'viral pop']",261426,FALSE,0.63,0.698,10,-4.51,1,0.0244,0.173,0,0.0789,0.529,94.023,4
13922,"Country Joe McDonald","Breakfast For Two","['folk rock', 'psychedelic rock']",285760,FALSE,0.351,0.293,11,-19.328,0,0.0378,0.373,0.00028,0.0888,0.399,95.201,4
4000,"Al Jarreau","Breakin' Away","['adult standards', 'jazz funk', 'quiet storm', 'smooth jazz', 'soft rock', 'vocal jazz', 'yacht rock']",253933,FALSE,0.678,0.345,1,-17.268,0,0.0338,0.434,3.81e-05,0.254,0.564,71.69,4
26958,"Jivin' Gene And The Jokers","Breaking Up Is Hard To Do","['swamp pop']",149653,FALSE,0.509,0.415,2,-10.234,1,0.0269,0.262,1.42e-05,0.191,0.604,112.228,3
17773,"Albert King","Breaking Up Somebody's Home","['blues', 'blues rock', 'classic rock', 'electric blues', 'memphis soul', 'soul blues', 'traditional blues']",220546,FALSE,0.601,0.437,9,-7.391,0,0.0483,0.224,0.00156,0.109,0.892,175.634,4
38079,"Miley Cyrus","Breakout","['dance pop', 'pop', 'post-teen pop']",206160,FALSE,0.44,0.852,4,-3.677,1,0.0565,0.000171,3.63e-06,0.234,0.823,159.981,4
8420,"Swing Out Sister","Breakout","['new romantic', 'new wave pop']",228000,FALSE,0.657,0.725,9,-7.84,1,0.029,0.136,0.0102,0.0465,0.752,113.172,4
41103,"Taylor Swift Featuring Colbie Caillat","Breathe","['pop', 'post-teen pop']",263986,FALSE,0.502,0.483,1,-7.203,1,0.0281,0.451,0,0.123,0.145,147.988,4
23133,"Ariana Grande","Breathin","['dance pop', 'pop', 'post-teen pop']",208294,TRUE,0.568,0.656,8,-5.413,1,0.0433,0.0211,1.37e-05,0.213,0.364,100.049,4
4637,"Barenaked Ladies","Brian Wilson","['canadian indie', 'canadian pop', 'canadian rock', 'comic', 'pop rock', 'post-grunge']",287773,FALSE,0.633,0.701,5,-11.86,1,0.0398,0.365,5.16e-06,0.179,0.88,153.109,4
39046,"Glee Cast","Bridge Over Troubled Water","['glee club', 'hollywood', 'post-teen pop']",254120,FALSE,0.445,0.675,10,-7.764,1,0.106,0.156,2.48e-05,0.659,0.448,153.906,4
2303,"Linda Clifford","Bridge Over Troubled Water","['deep disco', 'disco', 'post-disco']",610840,FALSE,0.594,0.778,2,-11.788,1,0.0543,0.00377,0.0906,0.0582,0.629,130.911,4
14417,"Tessanne Chin","Bridge Over Troubled Water","['reggae fusion']",222149,FALSE,0.291,0.321,7,-8.714,1,0.0302,0.879,0,0.194,0.352,80.773,4
50561,"Nas Featuring Olu Dara","Bridging The Gap","['country rap', 'lgbtq+ hip hop', 'pop rap']",236653,FALSE,0.549,0.693,7,-7.139,1,0.427,0.0325,0,0.62,0.475,93.864,4
94559,"The Dells","Bring Back The Love Of Yesterday","['brill building pop', 'chicago soul', 'classic soul', 'doo-wop', 'funk', 'motown', 'quiet storm', 'rhythm and blues', 'soul', 'southern soul']",232759,FALSE,0.423,0.534,6,-14.465,1,0.11,0.639,0.83,0.183,0.605,162.055,4
22533,"T.I.","Bring Em Out","['atl hip hop', 'dance pop', 'dirty south rap', 'gangster rap', 'hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",216706,TRUE,0.759,0.891,11,-2.983,1,0.257,0.0298,0,0.141,0.587,98.579,4
29437,"Grayson Hugh","Bring It All Back","[]",244066,FALSE,0.73,0.409,0,-12.775,1,0.029,0.442,2.66e-06,0.0383,0.717,102.967,4
22266,"Hot Sauce","Bring It Home (And Give It To Me)","['memphis soul']",200453,FALSE,0.589,0.526,3,-9.187,1,0.0446,0.643,7.54e-06,0.276,0.733,91.728,4
31738,"Evanescence Featuring Paul McCoy","Bring Me To Life","['alternative metal', 'post-grunge']",235893,FALSE,0.316,0.945,4,-3.169,0,0.124,0.00895,1.85e-06,0.396,0.32,189.931,4
55310,"Elvis Presley","Bringing It Back","['adult standards', 'rock-and-roll', 'rockabilly']",178306,FALSE,0.687,0.581,7,-11.304,1,0.0336,0.258,0,0.0804,0.517,119.695,4
77002,"Lesley Gore","Brink Of Disaster","['adult standards', 'brill building pop', 'bubblegum pop', 'classic girl group', 'folk rock', 'motown', 'rock-and-roll']",142800,FALSE,0.512,0.372,11,-10.919,1,0.0329,0.656,3.72e-06,0.608,0.652,144.245,4
51926,"The Dovells","Bristol Twistin' Annie","['brill building pop', 'doo-wop', 'rhythm and blues']",134533,FALSE,0.396,0.55,9,-7.346,1,0.208,0.106,0,0.0817,0.611,203.274,4
34564,"Rod Stewart","Broken Arrow","['adult standards', 'mellow gold', 'soft rock']",261093,FALSE,0.569,0.486,2,-10.64,1,0.0248,0.364,0.000326,0.267,0.509,83.213,4
32614,"Anne Murray","Broken Hearted Me","['adult standards', 'bubblegum pop', 'canadian country', 'canadian pop', 'folk', 'mellow gold', 'soft rock']",238066,FALSE,0.432,0.446,1,-8.493,1,0.0266,0.262,2.93e-06,0.134,0.0876,133.842,4
45062,"Angie Stone","Brotha","['neo soul', 'r&b', 'soul', 'urban contemporary']",268133,FALSE,0.801,0.434,7,-9.174,0,0.376,0.538,0,0.0729,0.661,132.254,4
56538,"Neil Diamond","Brother Love's Travelling Salvation Show","['adult standards', 'brill building pop', 'folk', 'folk rock', 'mellow gold', 'singer-songwriter', 'soft rock', 'yacht rock']",211862,FALSE,0.428,0.432,8,-11.58,1,0.0288,0.575,0.00933,0.0888,0.808,135.142,4
64693,"Train Featuring Ashley Monroe","Bruises","['neo mellow', 'pop', 'pop rock']",231786,FALSE,0.63,0.791,2,-4.497,1,0.0279,0.0131,6.83e-06,0.232,0.491,102.963,4
5448,"Major Lazer Featuring Bruno Mars, Tyga & Mystic","Bubble Butt","['dance pop', 'edm', 'electro house', 'moombahton', 'pop', 'tropical house']",227813,FALSE,0.765,0.771,7,-6.99,1,0.347,0.0115,0.00237,0.606,0.394,194.072,4
46104,"Ronny And The Daytonas","Bucket ""T""","['bubblegum pop', 'surf music']",157173,FALSE,0.548,0.951,8,-7.583,1,0.0628,0.746,0,0.392,0.631,105.686,4
93769,"George Ezra","Budapest","['folk-pop', 'neo-singer-songwriter', 'pop']",200733,FALSE,0.717,0.455,5,-8.303,1,0.0276,0.0846,0,0.11,0.389,127.81,4
72234,"Neneh Cherry","Buffalo Stance","['new wave pop', 'urban contemporary']",342360,FALSE,0.708,0.627,1,-11.155,1,0.0614,0.0113,3.13e-05,0.338,0.764,107.248,4
52937,"Sarah McLachlan","Building A Mystery","['canadian pop', 'canadian singer-songwriter', 'ectofolk', 'folk', 'lilith', 'neo mellow', 'new wave pop', 'permanent wave', 'pop rock']",247306,FALSE,0.505,0.518,2,-8.601,1,0.023,0.403,0,0.129,0.472,81.019,4
43266,"B2K & P. Diddy","Bump, Bump, Bump","['boy band', 'dance pop', 'hip pop', 'pop rap', 'r&b', 'southern hip hop', 'urban contemporary']",282533,FALSE,0.833,0.681,1,-6.028,0,0.215,0.0956,0,0.0414,0.887,95.48,4
56668,"Jethro Tull","Bungle In The Jungle","['album rock', 'art rock', 'blues rock', 'classic rock', 'hard rock', 'progressive rock', 'psychedelic rock', 'rock', 'symphonic rock']",217333,FALSE,0.61,0.583,11,-9.804,0,0.0371,0.109,0,0.28,0.909,104.337,4
63106,"Wiz Khalifa Featuring Rae Sremmurd","Burn Slow","['hip hop', 'pittsburgh rap', 'pop rap', 'rap', 'southern hip hop', 'trap']",222247,TRUE,0.797,0.437,9,-11.58,1,0.0469,0.0457,0.00109,0.126,0.186,125.008,4
79506,"Bad Company","Burnin' Sky","['album rock', 'blues rock', 'classic rock', 'hard rock', 'mellow gold', 'rock', 'soft rock']",310866,FALSE,0.436,0.532,0,-10.766,1,0.0476,0.308,0.00395,0.208,0.845,190.113,4
98842,"Jack Scott","Burning Bridges","['brill building pop', 'deep adult standards', 'rock-and-roll', 'rockabilly']",161733,FALSE,0.465,0.276,2,-13.184,1,0.0242,0.809,0.000272,0.214,0.233,82.613,4
10143,"Survivor","Burning Heart","['album rock', 'hard rock', 'rock', 'soft rock']",230106,FALSE,0.652,0.609,9,-9.684,0,0.028,0.298,8.79e-06,0.0573,0.646,98.125,4
45931,"Jo Dee Messina","Burn","['contemporary country', 'country', 'country dawn', 'country road']",281426,FALSE,0.43,0.708,7,-6.804,1,0.0351,0.133,0,0.238,0.356,173.706,4
20478,"Mobb Deep Featuring Vita & Noyd","Burn","['east coast hip hop', 'gangster rap', 'hardcore hip hop', 'hip hop', 'queens hip hop', 'rap']",255093,TRUE,0.746,0.736,11,-5.21,0,0.227,0.0101,5.56e-06,0.0333,0.808,95.58,4
22120,"Usher","Burn","['atl hip hop', 'dance pop', 'pop', 'pop rap', 'r&b', 'urban contemporary']",231933,FALSE,0.796,0.477,1,-7.161,1,0.108,0.314,0,0.12,0.685,119.928,4
70355,"Glee Cast","Bust A Move","['glee club', 'hollywood', 'post-teen pop']",264333,FALSE,0.923,0.925,9,-4.966,1,0.093,0.1,8.09e-05,0.123,0.708,118.994,4
40195,"Chuck Brown & The Soul Searchers","Bustin' Loose","['go-go']",462466,FALSE,0.865,0.896,3,-7.031,0,0.0623,0.27,0.0488,0.0676,0.944,111.457,4
76948,"Crazy Town","Butterfly","['alternative metal', 'funk metal', 'nu metal', 'post-grunge', 'rap rock']",216733,FALSE,0.736,0.811,9,-4.17,0,0.081,0.00132,0.000142,0.107,0.609,103.502,4
47086,"Sade","By Your Side","['british soul', 'neo soul']",274600,FALSE,0.653,0.433,11,-10.487,1,0.0295,0.0901,0.00394,0.0765,0.582,146.097,4
74437,"Johnny Mathis","Bye Bye Barbara","['adult standards', 'brill building pop', 'easy listening', 'mellow gold', 'vocal jazz']",155213,FALSE,0.363,0.336,3,-13.202,1,0.0353,0.967,4.57e-06,0.0781,0.555,95.658,4
90031,"Mariah Carey","Bye Bye","['dance pop', 'pop', 'r&b', 'urban contemporary']",266826,FALSE,0.782,0.603,10,-4.911,1,0.0615,0.304,0,0.35,0.851,136,4
84657,"The 4 Seasons Featuring the ""Sound of Frankie Valli""","Bye, Bye, Baby (Baby, Goodbye)","['adult standards', 'brill building pop', 'bubblegum pop', 'doo-wop', 'motown', 'northern soul', 'rock-and-roll']",152773,FALSE,0.49,0.579,2,-8.867,1,0.0402,0.0543,0,0.0947,0.342,116.122,4
56467,"B*Witched","C'est La Vie","['australian pop', 'bubblegum dance', 'dance pop', 'europop', 'girl group']",173693,FALSE,0.705,0.936,7,-5.109,1,0.0306,0.0978,0.000124,0.0506,0.939,109.004,4
40668,"Eddie Cochran","C'mon Everybody","['adult standards', 'brill building pop', 'rock-and-roll', 'rockabilly']",119698,FALSE,0.667,0.829,10,-9.849,0,0.0547,0.000518,0.89,0.0987,0.703,176.048,4
6790,"Plastic Bertrand","Ca Plane Pour Moi","['classic belgian pop']",182133,FALSE,0.422,0.943,10,-4.365,1,0.0954,0.074,6.83e-05,0.105,0.845,165.764,4
54901,"The Mills Brothers","Cab Driver","['adult standards', 'big band', 'lounge', 'swing', 'vocal harmony group', 'vocal jazz']",176266,FALSE,0.77,0.379,1,-15.714,1,0.0579,0.741,5.6e-06,0.0936,0.903,127.862,4
30510,"Herb Alpert & The Tijuana Brass","Cabaret","['adult standards', 'easy listening', 'lounge']",161200,FALSE,0.763,0.344,8,-13.969,1,0.0399,0.896,0.876,0.105,0.792,84.886,4
52616,"DNCE","Cake By The Ocean","['dance pop', 'pop', 'post-teen pop']",219146,TRUE,0.774,0.765,4,-5.439,0,0.0502,0.156,0,0.0373,0.917,119.001,4
4616,"Lawrence Welk And His Orchestra","Calcutta","[]",135520,FALSE,0.46,0.675,7,-7.657,1,0.0279,0.825,0.91,0.23,0.954,81.817,4
19459,"Robin Trower","Caledonia","['album rock', 'art rock', 'blues rock', 'british blues', 'classic rock', 'electric blues', 'hard rock', 'modern blues', 'psychedelic rock', 'rock', 'southern rock']",222293,FALSE,0.477,0.908,5,-7.611,0,0.0671,0.0215,3.74e-06,0.223,0.673,132.762,4
36312,"The Beach Boys","California Dreamin'","['baroque pop', 'brill building pop', 'folk rock', 'psychedelic rock', 'rock', 'sunshine pop']",204373,FALSE,0.586,0.845,1,-7.335,0,0.046,0.0529,1.57e-06,0.0752,0.615,116.455,4
88331,"Migos","Call Casting","['atl hip hop', 'pop rap', 'rap', 'trap']",232705,TRUE,0.852,0.727,1,-4.851,1,0.267,0.0962,0,0.154,0.496,130.014,4
17577,"Taylor Swift","Call It What You Want","['pop', 'post-teen pop']",203506,FALSE,0.598,0.504,9,-9.874,1,0.0731,0.186,0.000221,0.34,0.252,163.954,4
41707,"The Who","Call Me Lightning","['album rock', 'art rock', 'british invasion', 'classic rock', 'folk rock', 'hard rock', 'mellow gold', 'protopunk', 'rock', 'roots rock']",145194,FALSE,0.539,0.731,5,-7.353,1,0.0458,0.0413,0.000191,0.0902,0.649,170.765,4
80602,"Carly Rae Jepsen","Call Me Maybe","['canadian pop', 'dance pop', 'electropop', 'indie poptimism', 'pop', 'post-teen pop']",193400,FALSE,0.778,0.585,7,-6.502,1,0.0435,0.0123,0,0.108,0.626,120.069,4
6396,"Dennis DeYoung","Call Me","['soft rock']",285600,FALSE,0.584,0.33,0,-7.575,1,0.0286,0.834,3e-06,0.0471,0.153,119.288,4
96574,"Tweet","Call Me","['hip pop', 'neo soul', 'r&b', 'urban contemporary']",177373,FALSE,0.552,0.706,1,-8.117,0,0.363,0.484,6.49e-05,0.074,0.721,167.468,4
5325,"Chicago","Call On Me","['adult standards', 'album rock', 'classic rock', 'folk rock', 'mellow gold', 'rock', 'soft rock', 'yacht rock']",242653,FALSE,0.596,0.796,11,-8.339,0,0.0644,0.156,0.000542,0.0881,0.886,130.316,4
6884,"The Weeknd","Call Out My Name","['canadian contemporary r&b', 'canadian pop', 'pop']",228373,FALSE,0.461,0.593,1,-4.954,1,0.0356,0.17,0,0.307,0.175,134.17,3
83840,"Future","Call The Coroner","['atl hip hop', 'hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",131755,TRUE,0.853,0.805,11,-3.331,0,0.202,0.146,0.0515,0.204,0.879,134.55,4
30480,"Snow Patrol","Called Out In The Dark","['irish rock', 'modern rock', 'neo mellow', 'permanent wave', 'pop rock']",241933,FALSE,0.627,0.543,0,-9.377,1,0.0311,0.0376,3.85e-05,0.0635,0.102,120.933,4
22748,"John D. Loudermilk","Callin' Doctor Casey","['rock-and-roll']",156960,FALSE,0.598,0.787,7,-8.88,1,0.0506,0.314,0,0.125,0.808,73.467,4
87435,"Queen","Calling All Girls","['glam rock', 'rock']",231853,FALSE,0.613,0.727,2,-6.694,1,0.0368,0.0496,0.000169,0.066,0.587,138.409,4
52596,"Kodak Black","Calling My Spirit","['florida rap', 'hip hop', 'melodic rap', 'miami hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",152000,TRUE,0.91,0.366,1,-9.954,1,0.0941,0.0996,0,0.261,0.74,119.985,4
49120,"Suzi Quatro","Can The Can","['classic uk pop', 'glam rock', 'soft rock']",214400,FALSE,0.646,0.831,10,-6.011,0,0.16,0.017,0.91,0.422,0.593,133.431,4
93496,"Usher","Can U Get Wit It","['atl hip hop', 'dance pop', 'pop', 'pop rap', 'r&b', 'urban contemporary']",295600,FALSE,0.619,0.527,5,-9.376,0,0.0628,0.0692,0,0.333,0.242,124.356,4
38371,"Robert Palmer","Can We Still Be Friends","['album rock', 'art rock', 'classic rock', 'classic uk pop', 'dance rock', 'disco', 'heartland rock', 'mellow gold', 'new romantic', 'new wave', 'new wave pop', 'rock', 'soft rock', 'yacht rock']",219333,FALSE,0.799,0.434,4,-14.655,0,0.05,0.204,0,0.0559,0.815,96.476,4
6527,"Elton John","Can You Feel The Love Tonight (From ""The Lion King"")","['glam rock', 'mellow gold', 'piano rock']",241013,FALSE,0.309,0.179,10,-17.077,1,0.0337,0.88,0.000346,0.117,0.167,121.498,4
62053,"The Contours","Can You Jerk Like Me","['brill building pop', 'motown', 'northern soul']",149293,FALSE,0.57,0.748,8,-6.361,1,0.0548,0.64,1.72e-05,0.05,0.766,78.666,4
27455,"Rufus Thomas","Can Your Monkey Do The Dog","['classic soul', 'funk', 'memphis blues', 'memphis soul', 'rhythm and blues', 'soul', 'southern soul']",148039,FALSE,0.881,0.526,4,-8.1,1,0.0766,0.199,0.000179,0.0573,0.817,125.513,4
29156,"Trey Songz","Can't Be Friends","['dance pop', 'pop', 'pop rap', 'r&b', 'trap', 'urban contemporary']",220373,FALSE,0.451,0.588,11,-7.973,0,0.2,0.0643,0,0.171,0.332,171.849,4
39397,"Miley Cyrus","Can't Be Tamed","['dance pop', 'pop', 'post-teen pop']",168213,FALSE,0.637,0.919,7,-2.842,1,0.143,0.0359,0,0.22,0.793,116.987,4
85932,"The Williams Brothers","Can't Cry Hard Enough","['contemporary gospel', 'gospel']",191960,FALSE,0.444,0.199,0,-14.508,1,0.0266,0.239,0,0.116,0.32,85.904,4
22497,"Fabolous Featuring Nate Dogg","Can't Deny It","['dance pop', 'gangster rap', 'hip hop', 'hip pop', 'pop rap', 'r&b', 'rap', 'trap']",306440,TRUE,0.916,0.821,4,-4.118,0,0.15,0.0528,0,0.0635,0.592,90.04,4
15251,"Bad Company","Can't Get Enough","['album rock', 'blues rock', 'classic rock', 'hard rock', 'mellow gold', 'rock', 'soft rock']",256360,FALSE,0.638,0.686,0,-9.876,1,0.0366,0.314,0.23,0.0678,0.766,126.045,4
62461,"Willie Max Featuring Raphael Saadiq","Can't Get Enough","[]",279466,FALSE,0.738,0.328,8,-9.452,0,0.0551,0.0935,0.0056,0.138,0.259,56.999,4
2983,"Lil Suzy","Can't Get You Out Of My Mind","['freestyle']",216066,FALSE,0.863,0.68,6,-6.018,0,0.0642,0.0457,0.000476,0.0853,0.875,130.092,4
77233,"Tamia","Can't Go For That","['canadian pop', 'dance pop', 'deep pop r&b', 'hip pop', 'neo soul', 'new jack swing', 'quiet storm', 'r&b', 'urban contemporary']",226333,FALSE,0.668,0.698,11,-7.036,0,0.0714,0.242,6.32e-05,0.06,0.448,106.041,4
23325,"Kano","Can't Hold Back (Your Loving)","['grime', 'uk alternative hip hop', 'uk hip hop']",285695,FALSE,0.881,0.57,9,-9.373,0,0.172,0.305,0.00916,0.15,0.551,107.387,4
97768,"21 Savage","Can't Leave Without It","['atl hip hop', 'pop rap', 'rap', 'trap']",205351,TRUE,0.872,0.591,6,-6.952,0,0.359,0.111,0,0.144,0.696,131.982,4
53898,"Laurnea","Can't Let Go","[]",248360,FALSE,0.645,0.534,3,-10.66,1,0.0393,0.378,1.27e-05,0.0683,0.651,146.019,4
61414,"The Impressions","Can't Satisfy","['brill building pop', 'chicago soul', 'classic soul', 'funk', 'motown', 'quiet storm', 'rhythm and blues', 'soul']",156133,FALSE,0.606,0.743,0,-5.371,1,0.038,0.357,0,0.0802,0.919,125.756,4
20450,"Gloria Estefan & Miami Sound Machine","Can't Stay Away From You","['dance pop', 'latin pop', 'new wave pop', 'soft rock']",235760,FALSE,0.577,0.295,2,-15.448,1,0.044,0.575,7.22e-05,0.0591,0.594,77.938,4
74223,"Captain & Tennille","Can't Stop Dancin'","['pop edm']",230306,FALSE,0.358,0.842,7,-7.282,1,0.0553,0.216,0.00864,0.356,0.736,167.989,4
49992,"Bryan Adams","Can't Stop This Thing We Started","['album rock', 'canadian pop', 'canadian singer-songwriter', 'classic canadian rock', 'heartland rock', 'mellow gold', 'rock', 'soft rock']",195933,FALSE,0.497,0.93,9,-3.902,1,0.0444,0.0112,0,0.354,0.47,113.086,4
99724,"Herman's Hermits","Can't You Hear My Heartbeat","['adult standards', 'brill building pop', 'british invasion', 'bubblegum pop', 'classic uk pop', 'folk', 'folk rock', 'mellow gold', 'merseybeat', 'rock-and-roll']",134840,FALSE,0.581,0.63,9,-7.836,1,0.0334,0.0925,0,0.0648,0.91,136.994,3
53442,"Mary Wells","Can't You See (You're Losing Me)","['brill building pop', 'classic soul', 'funk', 'motown', 'rhythm and blues', 'soul', 'southern soul']",166400,FALSE,0.612,0.821,8,-8.236,1,0.0367,0.168,0,0.156,0.936,147.37,4
36004,"The Dave Clark Five","Can't You See That She's Mine","['brill building pop', 'british invasion', 'bubblegum pop', 'classic garage rock', 'classic uk pop', 'folk rock', 'merseybeat', 'rock-and-roll']",141880,FALSE,0.52,0.812,7,-8.171,1,0.182,0.0961,1.22e-05,0.27,0.81,164.869,4
86768,"Glee Cast","Candles","['glee club', 'hollywood', 'post-teen pop']",171373,FALSE,0.46,0.395,2,-8.479,1,0.038,0.849,0,0.104,0.192,176.21,4
68555,"Post Malone","Candy Paint","['dfw rap', 'melodic rap', 'rap']",227533,TRUE,0.67,0.654,4,-5.944,1,0.153,0.627,1.02e-06,0.071,0.438,180.024,4
96785,"Megan Thee Stallion","Captain Hook","['houston rap', 'pop', 'pop rap', 'trap queen']",176749,TRUE,0.863,0.633,10,-5.002,0,0.287,0.0118,0,0.285,0.545,163.991,4
44236,"Michael Murphey","Carolina In The Pines","['country rock', 'cowboy western', 'new mexico music', 'outlaw country']",250560,FALSE,0.595,0.382,11,-16.736,1,0.0281,0.00936,0.00253,0.0651,0.295,109.42,4
66306,"Parmalee","Carolina","['contemporary country', 'country', 'country pop', 'country road', 'modern country rock', 'modern uplift']",201346,FALSE,0.434,0.75,10,-3.53,1,0.0293,0.0107,0,0.106,0.488,159.824,4
37806,"Dr. Hook And The Medicine Show","Carry Me, Carrie","['bubblegum pop', 'classic uk pop', 'country rock', 'folk rock', 'mellow gold', 'soft rock']",257893,FALSE,0.328,0.486,2,-14.298,1,0.0938,0.487,0,0.147,0.61,176.304,4
14631,"fun.","Carry On","['baroque pop', 'metropopolis', 'modern rock', 'pop', 'pop rock']",278373,FALSE,0.388,0.694,5,-5.769,1,0.0735,0.118,0.000293,0.082,0.365,145.434,5
5346,"XXXTentacion","Carry On","['emo rap', 'miami hip hop']",129720,TRUE,0.735,0.197,3,-13.378,0,0.537,0.768,0.000276,0.296,0.383,147.899,4
38675,"TakeOff","Casper","['atl hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",197079,TRUE,0.921,0.607,1,-7.397,1,0.209,0.525,1.12e-06,0.123,0.753,140.071,4
90251,"Zac Brown Band","Castaway","['contemporary country', 'country', 'country road', 'modern country rock']",188053,FALSE,0.634,0.78,8,-4.928,1,0.0477,0.161,0,0.112,0.93,101.066,4
23065,"Destiny's Child","Cater 2 U","['dance pop', 'girl group', 'hip pop', 'pop', 'pop rap', 'r&b', 'urban contemporary']",245400,FALSE,0.605,0.584,11,-7.043,0,0.197,0.286,0,0.235,0.464,125.802,4
90518,"Four Tops","Catfish","['adult standards', 'brill building pop', 'classic soul', 'disco', 'funk', 'mellow gold', 'motown', 'quiet storm', 'soft rock', 'soul']",395106,FALSE,0.631,0.902,9,-8.074,0,0.143,0.325,6.65e-06,0.0999,0.479,122.461,4
8263,"Tori Amos","Caught A Lite Sneeze","['art pop', 'ectofolk', 'folk', 'lilith', 'melancholia', 'new wave pop', 'permanent wave', 'piano rock', 'pop rock', 'singer-songwriter']",265213,FALSE,0.6,0.772,5,-8.483,0,0.0444,0.37,4.46e-06,0.0641,0.921,79.059,4
29609,"Kelis","Caught Out There","['dance pop', 'electropop', 'hip pop', 'neo soul', 'pop rap', 'r&b', 'urban contemporary']",291706,FALSE,0.848,0.691,7,-6.775,1,0.093,0.0512,0.00803,0.0723,0.922,92.996,4
97669,"38 Special","Caught Up In You","['album rock', 'classic rock', 'country rock', 'folk rock', 'glam metal', 'hard rock', 'mellow gold', 'rock', 'soft rock', 'southern rock']",279333,FALSE,0.427,0.683,1,-8.513,0,0.0323,0.0241,0.000107,0.0476,0.882,131.024,4
45920,"Madonna","Celebration","['dance pop', 'pop']",215133,FALSE,0.637,0.891,11,-4.139,0,0.0345,0.0742,0.000622,0.0686,0.933,126.002,4
82601,"Rebbie Jackson","Centipede","['urban contemporary']",270626,FALSE,0.539,0.657,11,-8.485,1,0.0586,0.0793,0.000328,0.183,0.658,117.137,4
78605,"Fall Out Boy","Centuries","['emo', 'modern rock', 'pop punk']",228360,FALSE,0.385,0.866,4,-2.817,0,0.0697,0.004,0,0.111,0.551,176.014,4
29118,"Diana Ross","Chain Reaction","['adult standards', 'disco', 'funk', 'mellow gold', 'motown', 'quiet storm', 'soft rock', 'soul']",227880,FALSE,0.806,0.6,11,-9.642,1,0.0329,0.091,0.000436,0.0836,0.756,127.814,4
99781,"Marvin Gaye","Chained","['classic soul', 'funk', 'motown', 'northern soul', 'quiet storm', 'soul']",174093,FALSE,0.754,0.576,9,-10.402,0,0.0466,0.0863,0.91,0.133,0.883,94.291,4
45415,"B.B. King","Chains And Things","['blues', 'blues rock', 'classic rock', 'electric blues', 'jazz blues', 'soul blues', 'traditional blues']",293733,FALSE,0.537,0.23,4,-15.371,0,0.0351,0.579,0.203,0.12,0.371,79.849,4
82366,"Bobby Bland","Chains Of Love","['blues', 'electric blues', 'soul', 'soul blues', 'southern soul']",195506,FALSE,0.214,0.325,11,-11.731,1,0.035,0.0689,0.000599,0.149,0.185,77.532,3
50781,"The Drifters","Chains Of Love","['adult standards', 'brill building pop', 'bubblegum pop', 'lounge', 'mellow gold', 'motown', 'rock-and-roll', 'rockabilly', 'soul']",165840,FALSE,0.701,0.578,11,-9.933,1,0.0503,0.614,0,0.239,0.907,116.119,4
63398,"Ne-Yo","Champagne Life","['dance pop', 'pop', 'pop rap', 'r&b', 'urban contemporary']",323933,FALSE,0.616,0.741,7,-4.155,1,0.131,0.143,0,0.347,0.593,193.069,3
31606,"Five For Fighting","Chances","['acoustic pop', 'neo mellow', 'piano rock', 'pop rock', 'post-grunge']",215200,FALSE,0.401,0.802,10,-5.646,1,0.0291,0.0236,0,0.224,0.326,163.987,4
93523,"Sia","Chandelier","['australian dance', 'australian pop', 'dance pop', 'pop']",216120,FALSE,0.399,0.787,1,-2.88,1,0.0499,0.0197,6.07e-05,0.0685,0.572,117.089,5
4956,"J. Cole","Change","['conscious hip hop', 'hip hop', 'nc hip hop', 'pop rap', 'rap']",331480,TRUE,0.58,0.519,11,-10.653,0,0.251,0.642,0.00116,0.0936,0.242,107.401,4
16337,"Tears For Fears","Change","['dance rock', 'new romantic', 'new wave', 'new wave pop', 'permanent wave', 'rock', 'soft rock', 'synthpop']",254000,FALSE,0.62,0.797,9,-5.914,0,0.0303,0.13,0.196,0.175,0.805,125.277,4
83905,"Chante Moore","Chante's Got A Man","['hip pop', 'neo soul', 'new jack swing', 'quiet storm', 'r&b', 'urban contemporary']",264973,FALSE,0.741,0.643,1,-6.504,0,0.0686,0.225,0,0.0567,0.499,111.519,4
33392,"The Coasters","Charlie Brown","['brill building pop', 'bubblegum pop', 'doo-wop', 'motown', 'rhythm and blues', 'rock-and-roll', 'rockabilly', 'soul']",141666,FALSE,0.646,0.628,3,-8.794,1,0.243,0.404,5.03e-06,0.00967,0.881,125.705,4
27007,"Christopher Cross","Charm The Snake","['adult standards', 'album rock', 'disco', 'folk rock', 'mellow gold', 'new wave pop', 'quiet storm', 'soft rock', 'yacht rock']",267040,FALSE,0.527,0.733,9,-12.556,1,0.0381,0.0364,0.00263,0.458,0.648,171.441,4
64397,"Giorgio Moroder","Chase","['disco']",506160,FALSE,0.645,0.631,7,-13.359,0,0.0296,0.00177,0.823,0.0681,0.963,125.372,4
91317,"Chicago","Chasin' The Wind","['adult standards', 'album rock', 'classic rock', 'folk rock', 'mellow gold', 'rock', 'soft rock', 'yacht rock']",258666,FALSE,0.408,0.65,7,-5.844,1,0.0329,0.201,2.3e-05,0.344,0.271,80.116,4
31918,"Ryan Hurd With Maren Morris","Chasing After You",NA,207973,FALSE,0.596,0.679,4,-6.395,1,0.0394,0.723,0,0.116,0.479,131.912,4
65535,"ZZ Top","Cheap Sunglasses","['album rock', 'blues rock', 'classic rock', 'hard rock', 'metal', 'rock']",160466,FALSE,0.617,0.461,5,-14.485,0,0.0434,0.148,0.0151,0.12,0.828,93.853,4
71118,"Beyonce Featuring Slim Thug","Check On It","['dance pop', 'pop', 'pop rap', 'r&b']",76214,FALSE,0.519,0.884,7,-8.077,1,0.369,0.00294,0,0.943,0.693,167.345,4
4684,"Ice Cube Featuring Das EFX","Check Yo Self","['conscious hip hop', 'g funk', 'gangster rap', 'hardcore hip hop', 'hip hop', 'rap', 'west coast rap']",273106,TRUE,0.934,0.735,1,-6.668,1,0.251,0.031,8.6e-06,0.107,0.768,101.368,4
4428,"Jerry Murad's Harmonicats","Cherry Pink And Apple Blossom White","['lounge']",114826,FALSE,0.395,0.525,4,-12.596,1,0.056,0.47,0.67,0.447,0.436,134.98,4
44752,"Addrisi Brothers","Cherrystone","['sunshine pop']",148866,FALSE,0.514,0.75,8,-10.806,1,0.0453,0.835,3.36e-06,0.15,0.761,73.916,4
21298,"Webstar & Young B Featuring The Voice Of Harlem","Chicken Noodle Soup.","[]",223120,FALSE,0.626,0.686,7,-6.41,1,0.361,0.0923,0,0.545,0.659,95.383,4
75807,"Project Pat","Chickenhead","['crunk', 'dirty south rap', 'gangster rap', 'memphis hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",255360,TRUE,0.862,0.746,7,-5.729,1,0.259,0.0105,0,0.142,0.882,156.12,4
27266,"Billy Thorpe","Children Of The Sun","['australian rock']",404493,FALSE,0.326,0.458,9,-15.654,1,0.156,0.0146,0.00287,0.103,0.345,83.261,4
20951,"Robert Miles","Children","['eurodance', 'trance']",243266,FALSE,0.604,0.755,0,-10.761,1,0.0337,0.000295,0.812,0.0625,0.388,137.064,4
44573,"Sofia Carson, Cameron Boyce, Booboo Stewart & Mitchell Hope","Chillin' Like A Villain","['pop', 'post-teen pop', 'social media pop']",193792,FALSE,0.676,0.776,8,-6.629,1,0.0908,0.0374,0,0.226,0.792,113.92,4
92690,"Booker T. & The MG's","Chinese Checkers","['classic soul', 'funk', 'instrumental funk', 'instrumental soul', 'memphis soul', 'soul', 'southern soul']",149133,FALSE,0.781,0.432,5,-12.01,1,0.0412,0.787,0.923,0.099,0.885,114.623,4
42372,"Guns N' Roses","Chinese Democracy","['glam metal', 'hard rock', 'rock']",283213,FALSE,0.474,0.8,2,-10.472,1,0.0775,0.000769,0.0309,0.131,0.156,133.94,4
3047,"Banzaii","Chinese Kung Fu","[]",303426,FALSE,0.653,0.738,10,-10.335,0,0.045,2.02e-05,0.874,0.0732,0.666,106.084,4
69158,"Aerosmith","Chip Away The Stone","['album rock', 'classic rock', 'hard rock', 'rock']",240693,FALSE,0.409,0.926,7,-9.374,1,0.0326,0.0744,4.22e-05,0.347,0.889,132.203,4
2509,"Emblem3","Chloe (You're The One I Want)","['post-teen pop', 'talent show', 'teen pop']",222986,FALSE,0.71,0.925,0,-3.329,1,0.0359,0.039,0,0.127,0.93,118.024,4
71185,"Choppa Featuring Master P","Choppa Style","['memphis hip hop']",223583,FALSE,0.896,0.703,11,-6.032,1,0.221,0.0697,6.07e-06,0.0699,0.618,95.059,4
79389,"T-Pain Featuring Ludacris","Chopped 'N' Skrewed","['dance pop', 'hip hop', 'pop', 'pop rap', 'r&b', 'rap', 'southern hip hop', 'trap', 'urban contemporary']",261226,FALSE,0.558,0.604,7,-7.892,0,0.0529,0.0181,0,0.503,0.323,120.159,4
62354,"Taylor Swift","Christmas Tree Farm","['dance pop', 'pop', 'post-teen pop']",228026,FALSE,0.598,0.68,7,-4.505,1,0.0331,0.06,0,0.324,0.437,134.002,4
79869,"Lil Uzi Vert","Chrome Heart Tags","['melodic rap', 'philly rap', 'rap', 'trap']",212821,TRUE,0.702,0.768,0,-4.055,1,0.0669,0.541,0,0.105,0.574,70.056,4
79533,"Trace Adkins","Chrome","['contemporary country', 'country', 'country road', 'country rock', 'modern country rock', 'redneck']",201693,FALSE,0.474,0.924,9,-3.923,1,0.062,0.112,6.93e-06,0.229,0.774,179.746,4
2012,"Firefall","Cinderella","['album rock', 'bubblegum pop', 'classic rock', 'country rock', 'folk rock', 'mellow gold', 'soft rock']",216066,FALSE,0.558,0.542,7,-11.512,1,0.0329,0.605,1.4e-06,0.153,0.557,147.029,4
53312,"Derek","Cinnamon","['christian hip hop', 'christian trap']",161946,FALSE,0.604,0.742,9,-9.503,1,0.0459,0.0611,6.13e-06,0.259,0.923,163.861,4
54218,"Elton John","Circle Of Life (From ""The Lion King"")","['glam rock', 'mellow gold', 'piano rock']",291600,FALSE,0.304,0.396,10,-15.248,1,0.0333,0.28,0.139,0.109,0.142,160.609,4
58958,"Edie Brickell & New Bohemians","Circle","['folk', 'lilith']",190906,FALSE,0.614,0.312,2,-13.537,1,0.0369,0.506,1.24e-05,0.144,0.395,81.961,4
98066,"The Beau-Marks","Clap Your Hands","[]",120786,FALSE,0.501,0.753,6,-7.349,1,0.0331,0.0381,0,0.185,0.927,123.713,4
83917,"Jidenna Featuring Roman GianArthur","Classic Man","['alternative r&b', 'ghanaian hip hop']",226000,TRUE,0.79,0.585,8,-6.058,1,0.0348,0.185,0,0.292,0.585,94.072,4
64908,"Eminem","Cleanin' Out My Closet","['detroit hip hop', 'g funk', 'hip hop', 'rap']",297840,TRUE,0.911,0.743,9,-5.005,0,0.219,0.0835,0,0.106,0.878,148.012,4
98443,"Bus Boys","Cleanin' Up The Town","[]",177866,FALSE,0.574,0.696,0,-14.097,1,0.0352,0.0369,1.13e-05,0.173,0.882,95.244,4
85557,"Jr. Walker & The All Stars","Cleo's Mood","['outlaw country', 'redneck']",161973,FALSE,0.726,0.4,3,-7.474,0,0.0321,0.782,0.475,0.258,0.844,106.498,4
91230,"Bobby Vinton","Clinging Vine","['adult standards', 'brill building pop', 'bubblegum pop', 'easy listening', 'lounge', 'rock-and-roll']",149173,FALSE,0.46,0.196,0,-18.122,1,0.034,0.513,0,0.101,0.728,114.034,4
4436,"Gorillaz","Clint Eastwood","['alternative hip hop', 'art pop']",340920,TRUE,0.663,0.694,10,-8.627,0,0.172,0.0249,0,0.0698,0.524,167.964,4
51812,"Mike Clifford","Close To Cathy","[]",174760,FALSE,0.453,0.206,4,-10.18,1,0.0277,0.784,0,0.069,0.283,81.715,4
66048,"Edward Bear","Close Your Eyes","['bubblegum pop', 'classic canadian rock']",178160,FALSE,0.289,0.447,5,-15.023,0,0.0682,0.358,2.46e-06,0.0998,0.479,160.292,4
80920,"Kanye West","Closed On Sunday","['chicago rap', 'rap']",151873,FALSE,0.799,0.291,11,-7.353,0,0.0318,0.873,0.000641,0.139,0.406,97.984,4
36018,"Mat Kearney","Closer To Love","['acoustic pop', 'indie poptimism', 'indiecoustica', 'neo mellow', 'pop rock', 'stomp and holler']",217560,FALSE,0.641,0.601,0,-8.51,1,0.0337,0.508,9.33e-06,0.121,0.553,104.984,4
83393,"Rush","Closer To The Heart","['album rock', 'art rock', 'canadian metal', 'classic canadian rock', 'classic rock', 'hard rock', 'metal', 'progressive rock', 'rock']",171960,FALSE,0.374,0.804,2,-9.209,1,0.0899,0.155,0,0.654,0.561,144.995,1
75328,"Too $hort","Cocktales","['cali rap', 'gangster rap', 'hip hop', 'hyphy', 'pop rap', 'rap', 'southern hip hop', 'west coast rap']",366160,TRUE,0.838,0.542,1,-6.884,0,0.0951,0.115,0.0075,0.374,0.239,87.094,4
29177,"Mr. President","Coco Jamboo","['bubblegum dance', 'eurodance', 'europop', 'german techno', 'hip house']",218733,FALSE,0.832,0.838,1,-5.414,0,0.0421,0.0791,0,0.152,0.965,100.021,4
51441,"The Pixies Three","Cold Cold Winter","['classic girl group']",164413,FALSE,0.453,0.492,7,-13.294,1,0.031,0.35,1.8e-05,0.23,0.609,141.175,4
86531,"Eric Church","Cold One","['contemporary country', 'country', 'country road', 'modern country rock']",205226,FALSE,0.592,0.894,6,-5.757,1,0.0648,0.0773,0.00313,0.543,0.774,147.943,4
33260,"Crossfade","Cold","['alternative metal', 'nu metal', 'post-grunge', 'rap rock']",194226,FALSE,0.451,0.815,2,-5.55,0,0.0368,6.06e-05,0,0.27,0.618,147.974,4
12652,"ScHoolboy Q Featuring Kendrick Lamar","Collard Greens","['hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap', 'underground hip hop']",299960,TRUE,0.825,0.575,11,-4.87,1,0.0633,0.025,9.94e-06,0.205,0.65,153.954,4
71436,"Selena Gomez","Come & Get It","['dance pop', 'pop', 'post-teen pop']",231986,FALSE,0.546,0.787,7,-4.1,0,0.0517,0.0101,0.00021,0.0809,0.573,79.979,4
10361,"Damn Yankees","Come Again","['album rock', 'glam metal', 'hard rock', 'rock']",339560,FALSE,0.222,0.681,9,-10.832,0,0.0469,0.126,8.03e-05,0.128,0.388,130.689,4
87498,"Martha & The Vandellas","Come And Get These Memories","['adult standards', 'brill building pop', 'classic girl group', 'classic soul', 'disco', 'funk', 'motown', 'quiet storm', 'soul']",143666,FALSE,0.533,0.67,3,-7.214,1,0.0394,0.62,1.51e-06,0.331,0.897,127.129,4
46652,"PARTYNEXTDOOR Featuring Drake","Come And See Me","['hip hop', 'pop', 'pop rap', 'r&b', 'rap', 'toronto rap', 'trap', 'urban contemporary']",235477,TRUE,0.717,0.347,11,-10.265,0,0.0636,0.0511,2.43e-06,0.087,0.0589,84.987,4
1891,"Nirvana","Come As You Are","['alternative rock', 'grunge', 'permanent wave', 'post-grunge', 'rock']",218920,FALSE,0.505,0.825,4,-5.721,0,0.0401,0.000182,0.000948,0.0855,0.541,119.987,4
879,"Mac Miller","Come Back To Earth","['hip hop', 'pittsburgh rap', 'pop rap', 'rap']",161840,FALSE,0.272,0.238,2,-12.148,0,0.0349,0.89,0.00925,0.275,0.119,83.507,4
79595,"Janet Jackson","Come Back To Me","['dance pop', 'hip pop', 'neo soul', 'pop', 'r&b', 'urban contemporary']",332741,FALSE,0.203,0.414,5,-12.287,0,0.0297,0.615,0.0158,0.142,0.065,78.935,4
19452,"Vanessa Hudgens","Come Back To Me","['dance pop', 'hollywood', 'post-teen pop', 'viral pop']",166866,FALSE,0.634,0.856,5,-4.064,1,0.132,0.000812,1.03e-05,0.207,0.723,88.05,4
37777,"The J. Geils Band","Come Back","['album rock', 'blues rock', 'classic rock', 'country rock', 'folk rock', 'hard rock', 'mellow gold', 'new wave pop', 'power pop', 'rock', 'roots rock', 'soft rock']",312600,FALSE,0.71,0.822,5,-6.827,0,0.0306,0.00203,0.00938,0.0541,0.956,125.06,4
7767,"Jeru The Damaja","Come Clean","['alternative hip hop', 'east coast hip hop', 'gangster rap', 'hardcore hip hop', 'hip hop', 'rap', 'turntablism']",297040,TRUE,0.812,0.778,10,-13.957,0,0.292,0.6,4.39e-05,0.11,0.599,87.713,4
47405,"SHeDAISY","Come Home Soon","['contemporary country', 'country', 'country dawn', 'country road']",242053,FALSE,0.279,0.431,10,-6.926,1,0.032,0.658,0,0.101,0.257,183.18,4
26133,"The Dave Clark Five","Come Home","['brill building pop', 'british invasion', 'bubblegum pop', 'classic garage rock', 'classic uk pop', 'folk rock', 'merseybeat', 'rock-and-roll']",168493,FALSE,0.417,0.361,7,-9.994,1,0.0626,0.376,0,0.114,0.47,201.364,4
60760,"Captain & Tennille","Come In From The Rain","['pop edm']",278146,FALSE,0.297,0.372,10,-8.172,1,0.0369,0.722,2.37e-05,0.774,0.0974,87.612,5
10253,"Taylor Swift","Come In With The Rain","['pop', 'post-teen pop']",238106,FALSE,0.517,0.448,7,-6.16,1,0.0258,0.118,2.56e-06,0.212,0.231,143.952,4
86925,"The White Buffalo & The Forest Rangers","Come Join The Murder","['new americana']",448093,FALSE,0.529,0.445,5,-7.156,1,0.0275,0.67,0.032,0.106,0.179,124.166,4
48011,"Dexy's Midnight Runners","Come On Eileen","['bow pop', 'dance rock', 'new wave pop']",273933,FALSE,0.435,0.652,0,-8.495,1,0.0404,0.519,0,0.129,0.806,108.097,4
66958,"Matt Nathanson","Come On Get Higher","['acoustic pop', 'indiecoustica', 'neo mellow', 'pop rock']",215173,FALSE,0.672,0.623,9,-5.699,1,0.0297,0.241,0,0.0848,0.617,92.018,4
22839,"The McCoys","Come On Let's Go","['brill building pop', 'bubblegum pop', 'classic garage rock', 'folk rock', 'merseybeat']",159600,FALSE,0.506,0.574,0,-11.217,1,0.0434,0.191,0,0.6,0.473,139.174,4
70218,"Los Lobos","Come On, Let's Go","['roots rock']",119960,FALSE,0.41,0.814,9,-9.053,1,0.0373,0.104,0.00613,0.0959,0.766,176.35,4
54726,"Aaliyah","Come Over","['dance pop', 'hip hop', 'hip pop', 'pop', 'pop rap', 'r&b', 'urban contemporary']",242360,FALSE,0.68,0.687,0,-8.44,0,0.0385,0.0387,0.00132,0.105,0.317,102.999,4
85547,"Tony Dallara","Come Prima","['classic italian pop']",121420,FALSE,0.558,0.337,2,-6.551,1,0.0419,0.676,0,0.0564,0.651,112.311,3
30262,"Van Morrison","Come Running","['classic rock', 'folk', 'folk rock', 'mellow gold', 'rock', 'roots rock', 'singer-songwriter', 'soft rock']",151333,FALSE,0.656,0.594,9,-10.991,1,0.0376,0.253,0.000905,0.119,0.778,98.356,4
23547,"112","Come See Me","['atl hip hop', 'boy band', 'dance pop', 'gangster rap', 'hip pop', 'new jack swing', 'pop rap', 'r&b', 'rap', 'southern hip hop', 'urban contemporary']",265760,FALSE,0.701,0.378,5,-9.259,0,0.0664,0.0263,0,0.0649,0.604,83.796,4
50851,"Melissa Etheridge","Come To My Window","['folk', 'heartland rock', 'lilith', 'mellow gold', 'pop rock']",236000,FALSE,0.512,0.636,7,-9.602,1,0.0262,0.08,0.000106,0.088,0.499,97.257,4
66940,"Ike & Tina Turner & The Ikettes","Come Together","['brill building pop', 'classic soul', 'motown', 'soul', 'southern soul']",220000,FALSE,0.762,0.252,3,-14.957,0,0.0383,0.628,0.00625,0.191,0.302,79.445,4
64519,"Duran Duran","Come Undone","['dance rock', 'new romantic', 'new wave', 'new wave pop', 'rock', 'soft rock', 'synthpop']",256519,FALSE,0.542,0.793,8,-8.203,1,0.053,0.0423,3.95e-06,0.0814,0.708,173.931,4
29804,"KONGOS","Come With Me Now","['modern alternative rock', 'modern blues rock', 'modern rock', 'south african rock']",211960,FALSE,0.654,0.726,10,-3.803,0,0.0401,0.0311,6.35e-05,0.0618,0.728,103.987,4
60722,"Keith Sweat (Featuring Ronald Isley)","Come With Me","['dance pop', 'funk', 'hip pop', 'new jack swing', 'quiet storm', 'r&b', 'urban contemporary']",236666,FALSE,0.669,0.37,7,-10.942,1,0.0318,0.517,1.54e-05,0.106,0.38,118.049,4
96784,"Shai","Come With Me","['boy band', 'hip pop', 'new jack swing', 'quiet storm', 'r&b', 'urban contemporary']",279960,FALSE,0.574,0.325,2,-9.088,1,0.0368,0.701,0,0.282,0.372,183.625,3
66660,"Barbra Streisand","Comin' In And Out Of Your Life","['adult standards', 'hollywood', 'mellow gold', 'soft rock']",248666,FALSE,0.305,0.295,1,-14.085,1,0.0392,0.804,1.67e-05,0.073,0.185,139.8,4
73838,"Big & Rich","Comin' To Your City","['detroit hip hop', 'hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",207133,FALSE,0.559,0.944,9,-1.422,0,0.085,0.258,0,0.165,0.66,99.027,4
22002,"Gloria Estefan","Coming Out Of The Dark","['dance pop', 'latin pop', 'new wave pop', 'soft rock']",242626,FALSE,0.643,0.43,4,-11.694,1,0.0447,0.65,0,0.417,0.475,131.846,4
96431,"Korn","Coming Undone","['alternative metal', 'funk metal', 'nu metal', 'post-grunge', 'rap metal', 'rock']",199773,FALSE,0.687,0.677,2,-4.172,1,0.0508,0.000658,0.000146,0.0564,0.546,75.052,4
2605,"Future","Commas","['atl hip hop', 'hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",237400,TRUE,0.874,0.568,11,-5.896,0,0.224,0.0698,1.38e-05,0.149,0.46,139.995,4
61154,"Creedence Clearwater Revival","Commotion","['album rock', 'classic rock', 'rock', 'roots rock', 'southern rock']",164293,FALSE,0.71,0.665,2,-7.632,1,0.0277,0.053,0.0207,0.177,0.796,127.472,4
61933,"Les McCann & Eddie Harris","Compared To What","['jazz funk', 'jazz piano', 'soul jazz']",523333,FALSE,0.557,0.457,0,-14.404,0,0.0362,0.796,0.000917,0.703,0.709,151.71,4
66981,"Mac Miller","Complicated","['hip hop', 'pittsburgh rap', 'rap']",232211,FALSE,0.831,0.36,0,-8.073,1,0.052,0.136,0.00217,0.0703,0.601,75.014,4
94346,"Daddy Yankee & Katy Perry Featuring Snow","Con Calma","['latin', 'latin hip hop', 'reggaeton', 'tropical']",193226,FALSE,0.737,0.86,8,-2.652,0,0.0593,0.11,1.94e-06,0.0574,0.656,93.989,4
19354,"The Excellents","Coney Island Baby","['doo-wop']",131146,FALSE,0.343,0.544,1,-8.08,1,0.0316,0.444,0,0.636,0.39,69.166,4
26299,"Demi Lovato","Confident","['dance pop', 'pop', 'post-teen pop']",205745,TRUE,0.606,0.763,10,-6.197,0,0.0669,0.00182,0.000159,0.116,0.309,130.018,4
20519,"Miami Sound Machine","Conga","['new wave pop']",254000,FALSE,0.789,0.655,2,-14.825,1,0.0474,0.167,0.0409,0.0311,0.865,122.236,4
39099,"Procol Harum","Conquistador","['album rock', 'art rock', 'blues rock', 'british invasion', 'classic rock', 'classic uk pop', 'folk rock', 'progressive rock', 'psychedelic rock', 'symphonic rock']",158146,FALSE,0.438,0.837,5,-6.416,0,0.0873,0.248,9.73e-05,0.135,0.616,125.092,4
43808,"Camila Cabello","Consequences","['dance pop', 'pop', 'post-teen pop']",178466,FALSE,0.455,0.292,0,-6.792,1,0.0563,0.889,0,0.106,0.43,84.339,5
46649,"Reba","Consider Me Gone","['contemporary country', 'country', 'country dawn', 'oklahoma country']",218053,FALSE,0.587,0.732,8,-3.851,1,0.0296,0.098,0,0.0917,0.453,97.031,4
19909,"Edwin Starr","Contact","['classic soul', 'motown', 'northern soul', 'soul', 'southern soul']",437600,FALSE,0.776,0.828,6,-9.403,1,0.0686,0.062,0.0239,0.0918,0.902,131.029,4
61518,"LL Cool J Featuring Jennifer Lopez","Control Myself","['east coast hip hop', 'hardcore hip hop', 'hip hop', 'hip pop', 'old school hip hop', 'pop rap', 'queens hip hop', 'r&b', 'rap', 'southern hip hop', 'urban contemporary']",233973,FALSE,0.814,0.878,0,-6.562,1,0.285,0.00806,7.58e-06,0.215,0.456,120.047,4
38195,"Prince","Controversy","['bachata', 'latin', 'latin pop', 'reggaeton', 'tropical']",435333,FALSE,0.852,0.321,1,-17.139,0,0.0527,0.00996,0.239,0.0684,0.629,119.378,4
52755,"Judy Collins","Cook With Honey","['american folk revival', 'classic uk pop', 'folk', 'folk rock', 'mellow gold', 'singer-songwriter', 'traditional folk']",211266,FALSE,0.488,0.378,2,-11.727,1,0.0301,0.891,0,0.101,0.753,148.34,4
24043,"Al Casey Combo","Cookin'","[]",134698,FALSE,0.686,0.557,10,-11.284,1,0.0344,0.305,0.674,0.177,0.907,141.825,4
91155,"Paul Davis","Cool Night","['album rock', 'bubblegum pop', 'country rock', 'folk rock', 'mellow gold', 'new wave pop', 'soft rock', 'yacht rock']",218826,FALSE,0.576,0.528,2,-5.236,0,0.0258,0.67,0,0.347,0.663,107.21,4
25755,"Gary U.S. Bonds","Copy Cat","['rhythm and blues']",159106,FALSE,0.583,0.735,5,-9.53,1,0.0484,0.651,0,0.147,0.832,92.08,4
10350,"Ray Peterson","Corinna, Corinna","['adult standards', 'brill building pop', 'merseybeat', 'rock-and-roll']",161040,FALSE,0.6,0.267,9,-11.804,1,0.0314,0.825,0,0.144,0.615,128.923,4
42727,"Jackson 5","Corner Of The Sky","['adult standards', 'motown', 'soul']",210013,FALSE,0.529,0.967,10,-2.719,1,0.049,0.358,6.95e-05,0.377,0.889,93.126,4
32086,"Anne Murray","Cotton Jenny","['adult standards', 'bubblegum pop', 'canadian country', 'canadian pop', 'folk', 'mellow gold', 'soft rock']",203386,FALSE,0.666,0.546,4,-5.689,1,0.0305,0.737,8.04e-06,0.154,0.571,119.986,4
64230,"Young The Giant","Cough Syrup","['indie pop', 'indie rock', 'indietronica', 'modern alternative rock', 'modern rock', 'pop', 'stomp and holler']",249520,FALSE,0.534,0.721,11,-7.307,0,0.0417,0.0343,6.24e-06,0.115,0.225,128.978,3
88190,"Charlie Worsham","Could It Be","['modern country rock']",204880,FALSE,0.641,0.745,4,-6.496,1,0.0324,0.0607,5.88e-06,0.104,0.719,90.501,4
75428,"Jaheim","Could It Be","['dance pop', 'hip pop', 'neo soul', 'new jack swing', 'quiet storm', 'r&b', 'urban contemporary']",224666,TRUE,0.655,0.553,9,-6.854,0,0.0891,0.0636,1.73e-05,0.126,0.531,70.033,4
13059,"Climax Blues Band","Couldn't Get It Right","['blues rock', 'british blues', 'classic rock', 'country rock', 'soft rock']",198946,FALSE,0.727,0.641,2,-11.074,1,0.0392,0.0234,0.0136,0.109,0.652,102.589,4
16200,"Dishwalla","Counting Blue Cars","['neo mellow', 'pop rock', 'post-grunge']",291906,FALSE,0.461,0.802,2,-4.279,1,0.029,0.0105,2.18e-05,0.253,0.384,100.179,4
28304,"Luke Bryan","Country Man","['contemporary country', 'country', 'country road']",190226,FALSE,0.739,0.836,4,-4.433,1,0.0307,0.031,0,0.494,0.858,120.001,4
12748,"The Raiders","Country Wine","['brill building pop', 'bubblegum pop', 'classic garage rock', 'folk rock', 'protopunk', 'psychedelic rock']",150466,FALSE,0.582,0.829,0,-7.65,1,0.0335,0.641,0,0.485,0.924,138.041,4
93074,"Carrie Underwood","Cowboy Casanova","['contemporary country', 'country', 'country dawn', 'dance pop', 'oklahoma country', 'pop', 'post-teen pop']",236786,FALSE,0.597,0.82,5,-2.529,1,0.0582,0.0328,0,0.119,0.576,119.969,4
54348,"Taylor Swift","Cowboy Like Me","['pop', 'post-teen pop']",275040,TRUE,0.604,0.517,0,-9.014,1,0.0347,0.768,0.000155,0.123,0.511,127.967,4
1385,"Kid Rock","Cowboy","['alternative metal', 'nu metal', 'post-grunge', 'rock']",257866,TRUE,0.608,0.897,1,-2.921,1,0.291,0.085,0,0.108,0.868,166.652,4
56693,"George Strait","Cowboys Like Us","['contemporary country', 'country', 'country road']",219160,FALSE,0.477,0.553,0,-6.094,1,0.0302,0.213,1.31e-06,0.201,0.299,128.416,3
93138,"Brooks & Dunn Featuring Reba McEntire","Cowgirls Don't Cry","['contemporary country', 'country', 'country road', 'country rock']",219813,FALSE,0.656,0.668,9,-5.251,1,0.0303,0.0626,2.78e-06,0.179,0.617,114.905,4
24019,"Thomas Rhett","Crash And Burn","['contemporary country', 'country', 'country road', 'modern country rock']",190733,FALSE,0.693,0.789,5,-5.161,0,0.0315,0.0768,1.19e-06,0.178,0.795,130.025,4
94532,"Chris Brown","Crawl","['dance pop', 'pop', 'pop rap', 'r&b', 'rap']",236253,FALSE,0.41,0.743,5,-6.356,0,0.0591,0.0416,0,0.113,0.417,176.048,4
68397,"Naughty By Nature","Craziest","['east coast hip hop', 'gangster rap', 'hardcore hip hop', 'hip hop', 'new jersey rap', 'rap']",248160,TRUE,0.868,0.867,4,-5.976,0,0.28,0.267,1.08e-05,0.228,0.595,99.469,4
29185,"Buckcherry","Crazy Bitch","['alternative metal', 'glam metal', 'hard rock', 'nu metal', 'post-grunge', 'rock', 'sleaze rock']",204960,TRUE,0.661,0.978,1,-3.064,0,0.107,0.0247,0,0.0856,0.592,98.019,4
95590,"Evan And Jaron","Crazy For This Girl","['neo mellow', 'pop rock']",202026,FALSE,0.457,0.926,0,-5.461,1,0.038,0.000487,5.69e-05,0.0949,0.41,93.964,4
7806,"Helen Reddy","Crazy Love","['adult standards', 'brill building pop', 'bubblegum pop', 'classic uk pop', 'country rock', 'folk', 'mellow gold', 'soft rock']",195520,FALSE,0.644,0.348,2,-11.165,1,0.0361,0.833,0,0.0837,0.56,74.652,4
77410,"Heart","Crazy On You","['folk-pop', 'indie folk', 'indie pop', 'neo mellow', 'new americana', 'seattle indie', 'stomp and holler']",293440,FALSE,0.427,0.459,9,-12.442,0,0.0332,0.116,0.000103,0.132,0.383,129.878,4
9543,"Javier","Crazy","[]",293053,FALSE,0.681,0.787,7,-4.835,0,0.0277,0.00229,1.33e-06,0.0829,0.629,90.482,4
79526,"K-Ci & JoJo","Crazy","['dance pop', 'hip pop', 'new jack swing', 'quiet storm', 'r&b', 'urban contemporary']",260266,FALSE,0.683,0.664,0,-4.422,1,0.0264,0.092,0,0.595,0.446,116.141,4
86314,"Kenny Rogers","Crazy","['adult standards', 'classic country pop', 'country', 'mellow gold', 'nashville sound', 'soft rock']",223666,FALSE,0.454,0.186,1,-16.281,1,0.031,0.727,5.49e-06,0.0783,0.303,136.173,4
62045,"Patsy Cline","Crazy","['adult standards', 'nashville sound']",164573,FALSE,0.471,0.021,10,-24.385,1,0.0366,0.931,1.19e-06,0.103,0.356,107.765,3
59979,"The Manhattans","Crazy","['classic soul', 'disco', 'funk', 'motown', 'philly soul', 'quiet storm', 'soul', 'southern soul']",295240,FALSE,0.847,0.487,8,-12.124,0,0.064,0.0776,6.66e-05,0.342,0.898,110.966,4
38180,"Drake Featuring The Weeknd","Crew Love","['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",208813,TRUE,0.418,0.546,0,-9.057,0,0.238,0.227,0,0.229,0.294,160.152,4
74282,"Ed Sheeran Featuring Chance The Rapper & PnB Rock","Cross Me","['pop', 'uk pop']",206186,TRUE,0.746,0.787,4,-6.373,1,0.12,0.214,0,0.0669,0.607,95.005,4
74289,"YoungBoy Never Broke Again","Cross Roads","['baton rouge rap', 'trap']",168045,TRUE,0.714,0.722,0,-5.685,1,0.0538,0.0735,0,0.114,0.439,143.019,4
43012,"Philly's Most Wanted","Cross The Border","['philly rap']",255724,TRUE,0.684,0.839,8,-2.59,1,0.26,0.294,1.11e-06,0.0813,0.786,91.136,4
78222,"EPMD","Crossover","['east coast hip hop', 'gangster rap', 'hardcore hip hop', 'hip hop', 'old school hip hop', 'rap', 'turntablism']",228760,TRUE,0.815,0.627,10,-10.438,0,0.275,0.0301,0.000144,0.148,0.644,101.437,4
23027,"Steve Martin","Cruel Shoes","['clean comedy', 'comedy', 'comic', 'progressive bluegrass']",137373,FALSE,0.562,0.38,7,-15.932,0,0.693,0.865,0,0.366,0.556,126.758,3
88221,"D'Angelo","Cruisin'","['alternative r&b', 'funk', 'hip hop', 'indie soul', 'neo soul', 'r&b', 'soul', 'urban contemporary']",384666,FALSE,0.407,0.525,11,-12.725,0,0.166,0.381,0.000452,0.0816,0.329,74.34,4
1042,"John Cougar Mellencamp","Crumblin' Down","['album rock', 'classic rock', 'folk rock', 'heartland rock', 'mellow gold', 'pop rock', 'rock', 'singer-songwriter', 'soft rock']",214133,FALSE,0.782,0.905,7,-3.56,1,0.0789,0.0165,1.37e-06,0.0796,0.668,126.749,4
15041,"Brad Paisley","Crushin' It","['contemporary country', 'country', 'country road']",220146,FALSE,0.595,0.823,2,-5.864,1,0.0483,0.0385,1.35e-06,0.0984,0.745,108.99,4
28114,"Jodeci","Cry For You","['dance pop', 'funk', 'hip hop', 'hip pop', 'neo soul', 'new jack swing', 'quiet storm', 'r&b', 'urban contemporary']",300906,FALSE,0.651,0.498,5,-12.159,0,0.0339,0.328,0,0.309,0.581,115.771,4
68047,"September","Cry For You","['dance pop', 'electropop', 'eurodance', 'europop', 'swedish electropop', 'swedish pop']",211600,FALSE,0.776,0.878,9,-3.377,1,0.0304,0.00141,0.000204,0.0574,0.96,130.022,4
25268,"The Box Tops","Cry Like A Baby","['brill building pop', 'bubblegum pop', 'folk rock', 'merseybeat']",152400,FALSE,0.666,0.465,2,-11.785,1,0.0307,0.344,4.82e-06,0.497,0.771,132.808,4
92754,"Justin Timberlake","Cry Me A River","['dance pop', 'pop', 'pop rap']",288333,FALSE,0.624,0.653,8,-6.582,0,0.176,0.575,0,0.104,0.565,73.884,4
41347,"Freddie Scott","Cry To Me","['southern soul']",198533,FALSE,0.505,0.221,4,-12.462,1,0.0522,0.77,1.4e-05,0.14,0.307,72.651,3
61557,"Solomon Burke","Cry To Me","['brill building pop', 'classic soul', 'funk', 'motown', 'soul', 'soul blues', 'southern soul', 'vocal jazz']",154906,FALSE,0.733,0.624,4,-9.849,1,0.0374,0.623,0,0.407,0.912,114.584,4
47735,"Vixen","Cryin'","['glam metal']",211906,FALSE,0.657,0.567,9,-12.871,1,0.0261,0.146,2e-05,0.0554,0.563,109.007,4
18343,"Casey James","Crying On A Suitcase","['idol', 'modern country rock']",221386,FALSE,0.402,0.7,4,-4.613,1,0.0348,0.147,0,0.0992,0.496,198.972,4
61173,"Future","Cuddle My Wrist","['atl hip hop', 'hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",181894,TRUE,0.903,0.503,11,-9.188,0,0.335,0.0744,2.09e-05,0.125,0.203,125,4
49770,"Living Colour","Cult Of Personality","['alternative metal', 'alternative rock', 'funk metal', 'funk rock', 'hard rock', 'rock', 'wrestling']",294826,FALSE,0.504,0.918,0,-3.463,1,0.0517,0.00164,2.12e-05,0.78,0.539,92.031,4
81777,"Migos Featuring DJ Khaled","Culture","['atl hip hop', 'pop rap', 'rap', 'trap']",153557,TRUE,0.825,0.7,11,-5.098,0,0.243,0.0379,0,0.139,0.317,132.996,4
52630,"Tony Orlando & Dawn","Cupid","['bubblegum pop', 'classic uk pop', 'country rock']",187440,FALSE,0.661,0.649,2,-15.516,1,0.0582,0.232,2.26e-06,0.136,0.322,124.571,4
46549,"One Way","Cutie Pie","['classic soul', 'electro', 'funk', 'motown', 'post-disco', 'quiet storm', 'soul']",328893,FALSE,0.878,0.535,2,-10.128,1,0.056,0.114,8.45e-06,0.0419,0.958,102.495,4
96845,"Rod Stewart","Da Ya Think I'm Sexy?","['adult standards', 'mellow gold', 'soft rock']",331333,FALSE,0.715,0.689,2,-8.065,0,0.029,0.0143,0.000192,0.111,0.852,111.504,4
73437,"Freak Nasty","Da' Dip","['atl hip hop', 'miami bass']",237000,TRUE,0.953,0.428,8,-17.199,1,0.298,0.0079,0.0302,0.224,0.723,131.737,4
43252,"Johnny Cash","Daddy Sang Bass","['arkansas country', 'outlaw country']",140440,FALSE,0.681,0.638,4,-7.818,1,0.0367,0.699,0.000629,0.0581,0.677,96.882,4
12081,"O.C. Smith","Daddy's Little Man","['beach music']",234093,FALSE,0.392,0.485,0,-12.101,1,0.0448,0.303,2.54e-05,0.0189,0.456,166.231,4
31055,"TLC","Damaged","['atl hip hop', 'dance pop', 'girl group', 'hip hop', 'hip pop', 'new jack swing', 'pop', 'pop rap', 'r&b', 'urban contemporary']",231373,FALSE,0.677,0.92,2,-5.013,1,0.0304,0.0262,5.08e-05,0.173,0.711,95.006,4
87572,"H.E.R.","Damage","['alternative r&b', 'dance pop', 'pop', 'r&b']",223414,FALSE,0.646,0.696,1,-6.505,1,0.065,0.113,0,0.115,0.18,81.336,4
80986,"Terence Trent D'Arby","Dance Little Sister","['dance rock', 'new romantic', 'new wave', 'new wave pop']",234640,FALSE,0.722,0.696,2,-11.095,0,0.0901,0.161,0,0.0755,0.93,115.397,4
42614,"Tones And I","Dance Monkey","['australian pop']",209438,FALSE,0.824,0.588,6,-6.4,0,0.0924,0.692,0.000104,0.149,0.513,98.027,4
92439,"Van Halen","Dance The Night Away","['album rock', 'classic rock', 'hard rock', 'metal', 'rock']",188083,FALSE,0.548,0.843,8,-7.32,1,0.0597,0.0373,1.26e-06,0.0536,0.719,129.661,4
85483,"Debelah Morgan","Dance With Me","['urban contemporary']",220106,FALSE,0.85,0.674,7,-7.981,0,0.0373,0.309,0.000645,0.0356,0.74,115.005,4
41085,"Ratt","Dance","['album rock', 'glam metal', 'hard rock', 'metal', 'rock']",261386,FALSE,0.555,0.971,8,-3.331,1,0.0513,0.0102,0.00975,0.139,0.782,128.952,4
33855,"Olivia Newton-John","Dancin' 'round And 'round","['adult standards', 'australian dance', 'bubblegum pop', 'disco', 'mellow gold', 'new wave pop', 'soft rock']",239213,FALSE,0.572,0.363,1,-15.017,1,0.0259,0.161,1.29e-05,0.145,0.464,96.991,4
45463,"Ronnie Dove","Dancin' Out Of My Heart","['deep adult standards']",169093,FALSE,0.43,0.512,4,-7.315,1,0.0298,0.622,0,0.145,0.616,102.03,4
31271,"King Harvest","Dancing In The Moonlight","['soft rock']",181133,FALSE,0.657,0.435,10,-15.707,1,0.0552,0.739,0,0.167,0.771,135.975,4
12630,"Ramsey Lewis","Dancing In The Street","['soul jazz']",307757,FALSE,0.622,0.528,0,-11.19,0,0.0492,0.717,0.79,0.886,0.8,140.734,4
9493,"Archie Bell & The Drells","Dancing To Your Music","['beach music', 'classic soul', 'disco', 'motown', 'northern soul', 'philly soul', 'quiet storm', 'rhythm and blues', 'soul', 'southern soul']",175426,FALSE,0.57,0.625,10,-10.742,1,0.0348,0.0796,0.000771,0.125,0.875,123.551,4
4107,"Sam Smith & Normani","Dancing With A Stranger","['pop', 'post-teen pop', 'uk pop']",171029,FALSE,0.741,0.52,8,-7.513,1,0.0656,0.45,1.97e-06,0.222,0.347,102.998,4
20656,"Demi Lovato","Dancing With The Devil","['dance pop', 'pop', 'post-teen pop']",243992,FALSE,0.413,0.64,8,-5.811,1,0.0427,0.273,0,0.11,0.149,75.245,4
79664,"The Marvelettes","Danger Heartbreak Dead Ahead","['brill building pop', 'classic girl group', 'classic soul', 'motown', 'quiet storm', 'rhythm and blues', 'soul', 'southern soul']",148706,FALSE,0.62,0.589,10,-8.812,1,0.0539,0.261,0.0081,0.141,0.708,125.368,4
82899,"Kenny Loggins","Danger Zone","['album rock', 'mellow gold', 'new wave pop', 'rock', 'soft rock', 'yacht rock']",215133,FALSE,0.544,0.897,3,-6.056,0,0.0471,0.241,0,0.13,0.647,157.17,4
37504,"The Five Stairsteps","Danger! She's A Stranger","['chicago soul', 'classic soul', 'motown', 'soul']",168426,FALSE,0.479,0.543,10,-8.504,0,0.0288,0.606,9.14e-06,0.145,0.81,93.384,4
41439,"Kardinal Offishall Featuring Akon","Dangerous","['pop rap', 'toronto rap']",246053,TRUE,0.951,0.79,8,-5.79,1,0.081,0.00429,0,0.0845,0.78,117.007,4
22095,"Jackie Wilson","Danny Boy","['adult standards', 'brill building pop', 'chicago soul', 'classic soul', 'motown', 'quiet storm', 'rhythm and blues', 'rock-and-roll', 'rockabilly', 'soul']",258440,FALSE,0.292,0.322,7,-8.13,1,0.0271,0.929,0.000169,0.162,0.179,82.316,1
40811,"George Harrison","Dark Horse","['album rock', 'classic rock', 'folk rock', 'mellow gold', 'psychedelic rock', 'rock', 'roots rock', 'soft rock']",233720,FALSE,0.625,0.683,7,-12.494,1,0.0455,0.0955,0.000418,0.305,0.722,95.628,4
72944,"Trippie Redd Featuring Travis Scott","Dark Knight Dummo","['melodic rap', 'rap', 'trap']",256162,TRUE,0.379,0.824,8,-2.881,0,0.0975,0.15,0,0.138,0.226,121.056,4
37943,"Eminem","Darkness","['detroit hip hop', 'hip hop', 'rap']",337146,TRUE,0.671,0.623,2,-7.161,1,0.308,0.00998,7.55e-06,0.643,0.195,75.055,4
91291,"The O'Jays","Darlin' Darlin' Baby (Sweet, Tender, Love)","['classic soul', 'disco', 'funk', 'motown', 'philly soul', 'post-disco', 'quiet storm', 'soul', 'southern soul', 'urban contemporary']",256240,FALSE,0.668,0.739,2,-6.906,1,0.0391,0.454,0,0.111,0.662,107.942,4
67425,"Eddie Kendricks","Darling Come Back Home","['classic soul', 'disco', 'funk', 'jazz funk', 'motown', 'post-disco', 'quiet storm', 'soul']",253266,FALSE,0.562,0.594,9,-13.518,0,0.0535,0.0854,1.08e-05,0.0798,0.816,83.523,4
66743,"The Knockouts","Darling Lorraine","['yacht rock']",121443,FALSE,0.531,0.298,11,-12.216,1,0.0265,0.876,0.000447,0.139,0.539,107.521,3
14429,"Al Martino","Darling, I Love You","['adult standards', 'brill building pop', 'easy listening', 'lounge']",180533,FALSE,0.37,0.328,0,-12.869,1,0.0279,0.666,0.0649,0.125,0.246,87.582,3
91462,"The Wackers","Day And Night","[]",186253,FALSE,0.674,0.738,2,-10.158,1,0.0697,0.323,6.17e-06,0.103,0.964,165.228,4
89728,"Aretha Franklin","Day Dreaming","['classic soul', 'jazz blues', 'memphis soul', 'soul', 'southern soul']",239960,FALSE,0.463,0.273,0,-15.364,0,0.074,0.907,0.000367,0.101,0.293,146.426,4
66748,"Little Big Town","Day Drinking","['contemporary country', 'country', 'country dawn', 'country road', 'modern country rock']",178840,FALSE,0.591,0.959,9,-2.515,1,0.057,0.103,0,0.779,0.86,163.883,4
64684,"Peter, Paul & Mary","Day Is Done","['a cappella', 'viral pop']",202973,FALSE,0.391,0.392,9,-11.881,1,0.0343,0.642,0,0.133,0.682,116.494,4
48329,"Anne Murray","Day Tripper","['adult standards', 'bubblegum pop', 'canadian country', 'canadian pop', 'folk', 'mellow gold', 'soft rock']",173200,FALSE,0.793,0.783,8,-9.462,0,0.062,0.121,0.00112,0.103,0.939,130.477,4
85906,"Keith","Daylight Savin' Time","['australian country', 'contemporary country', 'country', 'country road']",173360,FALSE,0.534,0.548,10,-8.851,1,0.0371,0.42,0,0.129,0.435,138.921,3
93763,"Drake","Days In The East","['canadian hip hop', 'canadian pop', 'hip hop', 'pop rap', 'rap', 'toronto rap']",353697,TRUE,0.733,0.361,1,-11.129,1,0.135,0.348,0.000285,0.0942,0.0361,94.902,4
8511,"Asia","Days Like These","['album rock', 'art rock', 'hard rock', 'mellow gold', 'progressive rock', 'rock', 'soft rock', 'symphonic rock']",244626,FALSE,0.609,0.67,2,-9.484,1,0.0314,0.08,0,0.0857,0.75,118.844,4
24756,"R.E.M.","Daysleeper","['alternative rock', 'permanent wave', 'pop rock', 'rock']",219600,FALSE,0.327,0.391,0,-9.533,1,0.032,0.157,2.18e-06,0.087,0.114,113.966,4
81750,"Jan & Dean","Dead Man's Curve","['christmas instrumental']",151160,FALSE,0.459,0.703,6,-9.578,1,0.041,0.677,0.000707,0.0815,0.904,133.5,4
70056,"The Hearts","Dear Abby","['garage pop', 'garage punk', 'garage rock', 'power-pop punk']",179026,FALSE,0.625,0.607,0,-5.45,1,0.0308,0.643,0.00222,0.0791,0.738,119.34,4
30875,"Andy Williams","Dear Heart","['adult standards', 'brill building pop', 'easy listening', 'mellow gold']",175053,FALSE,0.145,0.242,5,-12.448,1,0.03,0.873,0,0.136,0.0971,84.301,3
94253,"Gary U.S. Bonds","Dear Lady Twist","['rhythm and blues']",152533,FALSE,0.537,0.885,9,-7.156,0,0.245,0.622,0,0.755,0.951,138.95,4
64625,"Panic! At The Disco","Death Of A Bachelor","['baroque pop', 'emo', 'modern rock']",203506,FALSE,0.462,0.538,0,-5.527,1,0.059,0.0137,0,0.429,0.405,139.256,4
28627,"Trippie Redd Featuring DaBaby","Death","['melodic rap', 'rap', 'trap']",172195,TRUE,0.802,0.82,10,-5.969,0,0.146,0.0579,0,0.149,0.613,164.005,4
36250,"The 4 Seasons","December, 1963 (Oh, What a Night)","['adult standards', 'brill building pop', 'bubblegum pop', 'doo-wop', 'motown', 'northern soul', 'rock-and-roll']",197146,FALSE,0.737,0.495,1,-13.489,1,0.027,0.0588,9.12e-06,0.0542,0.967,104.409,4
42725,"Collective Soul","December","['alternative metal', 'alternative rock', 'pop rock', 'post-grunge', 'rock']",285000,FALSE,0.684,0.645,0,-5.707,1,0.0272,0.589,0.00432,0.18,0.366,121.995,4
58216,"Paramore","Decode","['candy pop', 'emo', 'pixie', 'pop emo', 'pop punk']",264205,FALSE,0.277,0.949,10,-4.072,0,0.0919,0.00155,0.000112,0.765,0.232,164.102,4
28296,"The Kinks","Dedicated Follower Of Fashion","['album rock', 'art rock', 'british invasion', 'classic rock', 'dance rock', 'folk rock', 'glam rock', 'mellow gold', 'protopunk', 'psychedelic rock', 'rock', 'roots rock']",180893,FALSE,0.406,0.879,0,-6.662,1,0.0433,0.369,1.54e-06,0.41,0.885,172.994,4
49155,"The Temprees","Dedicated To The One I Love","['classic soul', 'motown']",407040,FALSE,0.312,0.32,5,-11.249,0,0.0318,0.487,4.57e-05,0.104,0.317,140.211,3
83496,"Nipsey Hussle Featuring Kendrick Lamar","Dedication","['conscious hip hop', 'gangster rap', 'hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",245813,TRUE,0.512,0.734,8,-5.448,0,0.438,0.431,0,0.226,0.168,93.995,4
43177,"Clyde McPhatter","Deep In The Heart Of Harlem","['brill building pop', 'doo-wop', 'rhythm and blues', 'rock-and-roll', 'rockabilly']",168626,FALSE,0.656,0.568,5,-8.765,1,0.0386,0.712,9.06e-06,0.109,0.709,115.034,4
32276,"Duane Eddy","Deep In The Heart Of Texas","['adult standards', 'brill building pop', 'rhythm and blues', 'rock-and-roll', 'rockabilly', 'surf music']",119333,FALSE,0.683,0.649,9,-12.935,1,0.0316,0.846,0.83,0.154,0.881,111.099,4
13546,"Randy Meisner","Deep Inside My Heart","['soft rock']",209320,FALSE,0.634,0.506,2,-15.088,1,0.0272,0.0172,3.15e-06,0.0752,0.775,130.16,4
33873,"Third Eye Blind","Deep Inside Of You","['alternative rock', 'neo mellow', 'pop rock', 'post-grunge', 'rock']",250533,FALSE,0.502,0.591,7,-4.522,1,0.0242,0.00585,1.9e-05,0.0725,0.169,81.782,4
93255,"Mary J. Blige","Deep Inside","['dance pop', 'hip hop', 'hip pop', 'neo soul', 'pop', 'r&b', 'urban contemporary']",326000,FALSE,0.762,0.566,0,-6.749,1,0.0385,0.0341,2.73e-06,0.0779,0.666,129.28,4
84601,"Olivia Newton-John","Deeper Than The Night","['adult standards', 'australian dance', 'bubblegum pop', 'disco', 'mellow gold', 'new wave pop', 'soft rock']",216933,FALSE,0.764,0.457,1,-14.14,0,0.0365,0.081,0.000396,0.0833,0.715,118.083,4
98870,"Lord Tariq & Peter Gunz","Deja Vu [Uptown Baby]","['bronx hip hop']",284800,TRUE,0.861,0.622,1,-7.493,1,0.379,0.0816,0,0.123,0.664,96.911,4
92309,"Perry Como","Delaware","['adult standards', 'brill building pop', 'easy listening', 'vocal jazz']",139400,FALSE,0.831,0.741,4,-14.312,1,0.0707,0.582,0,0.058,0.79,99.705,4
98147,"Lil Wayne","Demon","['hip hop', 'new orleans rap', 'pop rap', 'rap', 'trap']",214313,TRUE,0.754,0.615,4,-5.346,0,0.171,0.273,0,0.13,0.345,140.04,4
43821,"After The Fire","Der Kommissar","['new wave']",337186,FALSE,0.694,0.716,7,-7.468,1,0.0513,0.00909,0.000814,0.0772,0.889,121.427,4
94136,"Rockets","Desire","['dance rock', 'dream pop', 'gothic rock', 'industrial rock', 'new romantic', 'new wave', 'new wave pop', 'post-punk']",206800,FALSE,0.54,0.935,2,-7.707,1,0.0488,0.00205,0.127,0.137,0.926,147.793,4
73224,"Luis Fonsi & Daddy Yankee Featuring Justin Bieber","Despacito","['latin', 'latin pop', 'puerto rican pop', 'tropical']",228826,FALSE,0.653,0.816,2,-4.353,1,0.167,0.228,0,0.0967,0.816,178.086,4
18930,"Myron","Destiny","[]",216493,FALSE,0.846,0.435,1,-10.506,1,0.137,0.0264,0,0.0728,0.545,116.136,4
57166,"Chris Brown Featuring Tyga & Kevin McCall","Deuces","['dance pop', 'pop', 'pop rap', 'r&b', 'rap']",276560,TRUE,0.692,0.736,1,-5.109,1,0.11,0.0324,0,0.0787,0.217,73.987,4
65981,"Bruce Springsteen","Devils & Dust","['heartland rock', 'mellow gold', 'permanent wave', 'rock', 'singer-songwriter']",298626,FALSE,0.638,0.443,2,-6.86,1,0.0283,0.374,0.000483,0.547,0.556,111.079,4
74868,"Carly Simon & James Taylor","Devoted To You","['adult standards', 'classic uk pop', 'folk', 'folk rock', 'mellow gold', 'singer-songwriter', 'soft rock']",150040,FALSE,0.539,0.278,2,-11.065,1,0.0234,0.515,0,0.0975,0.322,93.535,4
77540,"Earth, Wind & Fire","Devotion","['disco', 'funk', 'jazz funk', 'motown', 'quiet storm', 'soul']",290186,FALSE,0.572,0.355,9,-12.863,0,0.0286,0.452,0.0016,0.144,0.51,83.052,4
13025,"Shirley Bassey","Diamonds Are Forever","['adult standards', 'easy listening', 'lounge', 'vocal jazz']",161933,FALSE,0.48,0.447,4,-10.962,0,0.036,0.74,0.00437,0.0858,0.255,96.771,4
67100,"Sam Smith","Diamonds","['dance pop', 'pop', 'post-teen pop', 'uk pop']",213869,FALSE,0.653,0.667,10,-6.764,0,0.0423,0.154,0,0.107,0.556,104.181,4
41115,"Bobby Rydell","Diana","['adult standards', 'brill building pop', 'bubblegum pop', 'deep adult standards', 'doo-wop', 'merseybeat', 'rock-and-roll', 'rockabilly']",163226,FALSE,0.434,0.119,0,-20.525,1,0.0327,0.872,0.281,0.136,0.0904,92.151,3
16711,"Alicia Keys Featuring Tony! Toni! Tone!","Diary","['hip pop', 'neo soul', 'pop', 'r&b', 'urban contemporary']",284160,FALSE,0.664,0.465,8,-9.711,0,0.0317,0.559,0.00174,0.125,0.281,127.932,4
46876,"Deana Carter","Did I Shave My Legs For This?","['contemporary country', 'country', 'country dawn']",192773,FALSE,0.638,0.413,9,-5.759,1,0.0256,0.4,0,0.0845,0.334,89.126,3
30621,"Lil Tecca","Did It Again","['melodic rap']",116240,TRUE,0.686,0.561,10,-9.929,0,0.191,0.185,0,0.114,0.186,148.775,4
20804,"Daryl Hall John Oates","Did It In A Minute","['album rock', 'classic rock', 'mellow gold', 'rock', 'soft rock', 'yacht rock']",218093,FALSE,0.767,0.633,7,-10.06,1,0.0314,0.204,2.66e-06,0.198,0.921,132.253,4
62,"Pleasure P","Did You Wrong","['dance pop', 'deep pop r&b', 'hip pop', 'pop rap', 'r&b', 'southern hip hop', 'urban contemporary']",259000,TRUE,0.598,0.786,0,-5.037,1,0.0405,0.04,0,0.252,0.367,105.03,4
6316,"Whitney Houston","Didn't We Almost Have It All","['dance pop', 'pop', 'r&b']",305066,FALSE,0.54,0.489,10,-10.151,1,0.0269,0.416,0.000915,0.142,0.336,130.984,4
71472,"Kellie Pickler","Didn't You Know How Much I Loved You","['contemporary country', 'country', 'country dawn', 'country road']",285186,FALSE,0.524,0.791,9,-4.696,1,0.0396,0.244,0,0.0981,0.248,137.872,4
6754,"Maddie & Tae","Die From A Broken Heart","['contemporary country', 'country', 'country pop']",188320,FALSE,0.596,0.522,9,-6.633,1,0.0358,0.373,0,0.291,0.443,76.042,4
51519,"Ginuwine","Differences","['dance pop', 'hip hop', 'hip pop', 'neo soul', 'new jack swing', 'pop', 'pop rap', 'r&b', 'southern hip hop', 'urban contemporary']",265533,FALSE,0.562,0.594,3,-4.578,0,0.0558,0.318,0,0.311,0.423,62.876,4
59224,"Maureen McGovern","Different Worlds","['bubblegum pop']",138760,FALSE,0.604,0.549,5,-13.252,1,0.055,0.037,0,0.0856,0.704,105.49,4
74398,"Jennifer Lopez Featuring DJ Khaled & Cardi B","Dinero","['dance pop', 'pop', 'pop rap', 'post-teen pop', 'urban contemporary']",213750,FALSE,0.721,0.881,8,-2.528,1,0.342,0.41,7.61e-06,0.292,0.643,127.759,4
36842,"Pop Smoke","Dior","['brooklyn drill']",216386,TRUE,0.548,0.805,7,-5.732,1,0.351,0.212,0.000389,0.408,0.648,142.094,4
51245,"Jason Aldean","Dirt Road Anthem","['contemporary country', 'country', 'country road']",229400,FALSE,0.68,0.741,2,-5.055,1,0.0357,0.347,1.87e-06,0.117,0.635,127.024,4
98466,"Florida Georgia Line","Dirt","['contemporary country', 'country', 'country pop', 'country road', 'modern country rock']",230586,FALSE,0.554,0.875,2,-4.185,1,0.0487,0.0661,1.59e-05,0.118,0.543,121.976,4
34520,"YoungBoy Never Broke Again","Dirty Iyanna","['baton rouge rap', 'trap']",252311,TRUE,0.808,0.841,0,-4.492,1,0.0342,0.0336,4.35e-05,0.129,0.482,131.98,4
89204,"YoungBoy Never Broke Again","Dirty Stick","['baton rouge rap', 'trap']",169952,TRUE,0.614,0.789,0,-4.859,1,0.541,0.178,0,0.396,0.349,106.704,5
52908,"Rock And Hyde","Dirty Water","['classic canadian rock']",260000,FALSE,0.651,0.831,0,-10.906,1,0.0439,0.00341,5.08e-05,0.0855,0.402,111.665,4
48234,"Foreigner","Dirty White Boy","['album rock', 'classic rock', 'hard rock', 'mellow gold', 'rock', 'soft rock']",218866,FALSE,0.446,0.894,6,-8.564,1,0.0465,0.00351,2.72e-05,0.835,0.451,135.946,4
60402,"Johnnie Taylor","Disco Lady","['funk', 'memphis soul', 'motown', 'quiet storm', 'soul', 'soul blues', 'southern soul']",267066,FALSE,0.719,0.79,2,-8.002,1,0.0521,0.0568,0,0.0573,0.846,103.751,4
21210,"matchbox twenty","Disease","['neo mellow', 'pop rock', 'post-grunge']",219360,FALSE,0.541,0.833,8,-4.647,0,0.0583,0.0187,0,0.143,0.84,115.052,4
46411,"Katalina","DJ Girl","[]",222360,FALSE,0.917,0.796,11,-6.196,0,0.0814,0.0798,2.77e-05,0.124,0.955,125.935,4
53283,"BTS","DNA","['k-pop', 'k-pop boy group']",223122,FALSE,0.598,0.775,1,-4.035,0,0.0545,0.022,0,0.0677,0.687,129.819,4
77501,"Pia Mia Featuring Chris Brown & Tyga","Do It Again","['dance pop', 'deep pop r&b', 'pop', 'pop rap', 'post-teen pop', 'r&b', 'urban contemporary']",207746,TRUE,0.714,0.559,8,-6.543,1,0.0515,0.0299,0,0.088,0.411,95.979,4
28604,"Peoples Choice","Do It Any Way You Wanna","[]",198293,FALSE,0.78,0.542,0,-10.99,0,0.0464,0.0107,0.309,0.0868,0.808,111.269,4
25985,"Ben E. King","Do It In The Name Of Love","['adult standards', 'brill building pop', 'motown', 'rock-and-roll', 'soul', 'southern soul']",213906,FALSE,0.753,0.715,8,-10.089,0,0.0369,0.17,0.0019,0.31,0.748,100.137,4
58355,"Chloe X Halle","Do It","['alternative r&b', 'dance pop', 'pop', 'pop rap', 'post-teen pop', 'r&b']",176786,FALSE,0.725,0.668,5,-7.286,0,0.055,0.0932,2.33e-06,0.112,0.566,82.966,4
32194,"Detroit Emeralds","Do Me Right","['classic soul', 'rhythm and blues']",169251,FALSE,0.857,0.705,2,-9.243,1,0.0428,0.256,2.31e-05,0.061,0.968,112.666,4
64250,"Baby Featuring P. Diddy","Do That...","['atl hip hop', 'atl trap', 'pop rap', 'rap', 'trap']",151440,FALSE,0.863,0.225,0,-16.861,1,0.122,0.923,0.0404,0.0884,0.917,115.941,4
15160,"Jr. Walker & The All Stars","Do The Boomerang","['outlaw country', 'redneck']",142160,FALSE,0.609,0.844,3,-6.863,1,0.0327,0.397,0.000151,0.319,0.725,104.827,4
79461,"James & Bobby Purify","Do Unto Me","['pop', 'post-teen pop', 'talent show', 'uk pop']",147400,FALSE,0.53,0.659,10,-7.539,1,0.0382,0.124,0,0.0688,0.739,122.572,4
29349,"Manfred Mann","Do Wah Diddy Diddy","['brill building pop', 'british blues', 'british invasion', 'bubblegum pop', 'classic rock', 'classic uk pop', 'folk rock', 'merseybeat', 'rock-and-roll', 'rockabilly']",143400,FALSE,0.661,0.557,4,-8.244,1,0.049,0.262,0,0.0557,0.957,125.445,4
33233,"Lady Gaga Featuring R. Kelly","Do What U Want","['dance pop', 'pop']",216573,TRUE,0.777,0.794,9,-4.665,1,0.0942,0.369,1.88e-06,0.0889,0.529,97.505,4
14404,"Nina Simone","Do What You Gotta Do","['adult standards', 'jazz blues', 'soul', 'soul jazz', 'torch song', 'vocal jazz']",214893,FALSE,0.311,0.463,6,-10.838,1,0.0601,0.606,2.15e-05,0.263,0.594,159.401,4
92868,"Five Flights Up","Do What You Wanna Do","[]",153160,FALSE,0.555,0.377,1,-11.634,1,0.0278,0.6,0,0.147,0.415,75.822,4
77243,"Huey Lewis & The News","Do You Believe In Love","['album rock', 'classic rock', 'dance rock', 'folk rock', 'mellow gold', 'new wave', 'new wave pop', 'pop rock', 'rock', 'soft rock']",209000,FALSE,0.547,0.636,11,-10.948,1,0.0314,0.0582,0,0.249,0.816,114.061,4
98929,"Donnie Iris","Do You Compute?","['album rock']",220466,FALSE,0.649,0.516,1,-9.823,0,0.0352,0.00189,0.263,0.0465,0.758,115.963,4
14977,"The Dave Clark Five","Do You Love Me","['brill building pop', 'british invasion', 'bubblegum pop', 'classic garage rock', 'classic uk pop', 'folk rock', 'merseybeat', 'rock-and-roll']",163653,FALSE,0.432,0.913,2,-7.793,1,0.0531,0.00139,0,0.0564,0.917,140.912,4
70784,"Rufus And Chaka Khan","Do You Love What You Feel","['funk']",269306,FALSE,0.808,0.773,11,-11.4,1,0.0365,0.022,0.0436,0.654,0.893,119.944,4
40388,"Anthony Newley","Do You Mind?","[]",142826,FALSE,0.862,0.0937,0,-15.738,1,0.0522,0.462,0,0.179,0.73,120.006,4
71789,"Warren G","Do You See","['g funk', 'gangster rap', 'hardcore hip hop', 'hip hop', 'rap', 'west coast rap']",239066,TRUE,0.77,0.629,1,-10.583,0,0.205,0.161,1.76e-06,0.348,0.57,95.241,4
80507,"The Beach Boys","Do You Wanna Dance?","['baroque pop', 'brill building pop', 'folk rock', 'psychedelic rock', 'rock', 'sunshine pop']",142533,FALSE,0.438,0.81,10,-8.443,1,0.0457,0.455,2.23e-06,0.331,0.761,147.219,4
22608,"Glee Cast Featuring Gwyneth Paltrow","Do You Wanna Touch Me (Oh Yeah)","['glee club', 'hollywood', 'post-teen pop']",216640,FALSE,0.626,0.804,11,-3.586,1,0.0553,0.000841,0,0.543,0.63,126.972,4
84122,"Joan Jett & the Blackhearts","Do You Wanna Touch Me (Oh Yeah)","['rock']",226520,FALSE,0.572,0.836,11,-3.159,1,0.0867,0.0247,0.000221,0.159,0.726,127.667,4
76845,"Katrina And The Waves","Do You Want Crying","['new wave pop']",214773,FALSE,0.427,0.78,2,-10.671,1,0.035,9.01e-05,0.0294,0.202,0.815,155.964,4
44943,"Degrees Of Motion","Do You Want It Right Now","['hip house']",554133,FALSE,0.725,0.747,7,-8.658,1,0.0342,0.000968,0.00312,0.0492,0.638,116.129,4
70175,"Kristen Bell, Agatha Lee Monn & Katie Lopez","Do You Want To Build A Snowman?","['disney', 'hollywood']",206506,FALSE,0.306,0.121,0,-15.551,0,0.0554,0.85,0.000176,0.257,0.166,174.055,4
26544,"Isaac Hayes","Do Your Thing","['classic soul', 'disco', 'funk', 'jazz funk', 'memphis soul', 'motown', 'quiet storm', 'soul', 'southern soul']",200933,FALSE,0.672,0.347,5,-15.645,0,0.0489,0.00307,0.198,0.281,0.85,151.12,4
32189,"Jackson Browne","Doctor My Eyes","['album rock', 'classic rock', 'country rock', 'folk', 'folk rock', 'heartland rock', 'mellow gold', 'piano rock', 'rock', 'roots rock', 'singer-songwriter', 'soft rock']",199906,FALSE,0.48,0.626,5,-8.406,1,0.0294,0.266,5.7e-05,0.0857,0.542,75.63,4
5577,"Three 6 Mafia Featuring Chamillionaire","Doe Boy Fresh","['crunk', 'dirty south rap', 'gangster rap', 'hip hop', 'memphis hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",258733,TRUE,0.8,0.619,4,-5.728,1,0.131,0.263,0,0.0624,0.75,152.329,4
52934,"Ted Nugent","Dog Eat Dog","['album rock', 'blues rock', 'classic rock', 'glam metal', 'hard rock', 'metal', 'rock', 'southern rock']",243706,FALSE,0.538,0.899,9,-6.479,0,0.0457,0.00661,0.0049,0.13,0.702,135.637,4
76342,"Smokey Robinson & The Miracles","Doggone Right","['classic soul', 'disco', 'funk', 'motown', 'quiet storm', 'soul', 'southern soul']",179000,FALSE,0.536,0.415,2,-10.692,1,0.0271,0.283,0,0.205,0.598,105.231,4
84097,"LL Cool J","Doin It","['east coast hip hop', 'hardcore hip hop', 'hip hop', 'hip pop', 'old school hip hop', 'pop rap', 'queens hip hop', 'r&b', 'rap', 'southern hip hop', 'urban contemporary']",293933,TRUE,0.804,0.549,10,-11.096,0,0.213,0.368,0.0398,0.119,0.605,95.002,4
62876,"Danny & The Juniors","Doin' The Continental Walk","['alternative hip hop', 'detroit hip hop', 'escape room', 'hip hop', 'rap', 'southern hip hop', 'underground hip hop']",119800,FALSE,0.407,0.487,1,-9.568,1,0.0705,0.545,0,0.0941,0.917,160.02,4
37574,"Betty Boo","Doin' The Do","[]",220533,FALSE,0.807,0.971,5,-7.174,1,0.0621,0.00975,2.63e-05,0.0648,0.921,120.374,4
39107,"Huey Lewis & The News","Doing It All For My Baby","['album rock', 'classic rock', 'dance rock', 'folk rock', 'mellow gold', 'new wave', 'new wave pop', 'pop rock', 'rock', 'soft rock']",219506,FALSE,0.638,0.785,0,-6.143,1,0.0297,0.206,0,0.105,0.751,137.444,3
82730,"Jerry Vale","Dommage, Dommage (Too Bad, Too Bad)","['adult standards', 'brill building pop', 'easy listening', 'lounge', 'vocal jazz']",175893,FALSE,0.326,0.135,8,-14.578,1,0.0338,0.808,0.000375,0.284,0.105,53.919,3
86581,"The Emotions","Don't Ask My Neighbors","['chicago soul', 'classic soul', 'disco', 'funk', 'girl group', 'jazz funk', 'motown', 'post-disco', 'quiet storm', 'soul', 'southern soul', 'urban contemporary']",267066,FALSE,0.563,0.511,1,-9.544,1,0.0336,0.669,2.48e-05,0.0974,0.606,140.235,4
1295,"Barbara Lynn","Don't Be Cruel","['classic soul', 'motown', 'rhythm and blues', 'soul', 'southern soul']",158600,FALSE,0.799,0.557,6,-8.364,0,0.0381,0.763,1.35e-05,0.406,0.771,114.597,4
58303,"The Everly Brothers","Don't Blame Me","['adult standards', 'brill building pop', 'bubblegum pop', 'folk rock', 'lounge', 'mellow gold', 'rock-and-roll', 'rockabilly', 'sunshine pop']",145439,FALSE,0.517,0.256,2,-13.782,1,0.0277,0.766,1.42e-05,0.0931,0.0973,94.579,3
7274,"Tower Of Power","Don't Change Horses (In The Middle Of A Stream)","['funk', 'jazz funk', 'jazz fusion', 'modern funk', 'soul']",284000,FALSE,0.704,0.826,0,-6.489,1,0.0705,0.299,2.62e-06,0.11,0.894,99.326,4
57237,"INXS","Don't Change","['australian rock', 'dance rock', 'funk rock', 'mellow gold', 'new romantic', 'new wave', 'new wave pop', 'rock', 'soft rock']",266026,FALSE,0.276,0.883,9,-5.625,1,0.0446,0.000252,0.462,0.0973,0.164,164.052,4
86923,"Tom Petty And The Heartbreakers","Don't Come Around Here No More","['album rock', 'classic rock', 'folk rock', 'hard rock', 'heartland rock', 'mellow gold', 'pop rock', 'psychedelic rock', 'rock', 'roots rock', 'soft rock']",307333,FALSE,0.502,0.54,10,-15.93,1,0.0318,0.00105,0.00849,0.243,0.922,160.531,4
59546,"Fats Domino","Don't Come Knockin'","['adult standards', 'brill building pop', 'louisiana blues', 'lounge', 'new orleans blues', 'piano blues', 'rhythm and blues', 'rock-and-roll', 'rockabilly', 'soul']",117493,FALSE,0.59,0.409,10,-11.962,1,0.0299,0.307,0.000827,0.126,0.962,87.655,4
38579,"Metro Boomin Featuring 21 Savage","Don't Come Out The House","['hip hop', 'pop rap', 'rap', 'southern hip hop', 'trap']",168346,TRUE,0.87,0.35,1,-6.082,1,0.277,0.00661,0.000483,0.108,0.175,74.963,4
65769,"Bobby Bland","Don't Cry No More","['blues', 'electric blues', 'soul', 'soul blues', 'southern soul']",149133,FALSE,0.569,0.923,9,-7.219,0,0.0865,0.553,0,0.303,0.89,91.09,4
23731,"The System","Don't Disturb This Groove","['funk', 'new jack swing', 'post-disco', 'quiet storm']",317874,FALSE,0.521,0.878,9,-8.597,1,0.0542,0.286,6.8e-06,0.136,0.841,159.625,4
21585,"The FiNATTiCZ","Don't Drop That Thun Thun!",NA,202384,FALSE,0.824,0.496,7,-9.24,0,0.0512,0.00114,0.0755,0.0598,0.464,97.999,4
8639,"Lobo","Don't Expect Me To Be Your Friend","['adult standards', 'brill building pop', 'bubblegum pop', 'classic uk pop', 'country rock', 'folk', 'folk rock', 'mellow gold', 'soft rock']",217906,FALSE,0.513,0.347,1,-13.506,1,0.029,0.273,0.0417,0.0805,0.52,78.811,4
54327,"Dusty Springfield","Don't Forget About Me","['adult standards', 'brill building pop', 'british invasion', 'bubblegum pop', 'classic uk pop', 'folk', 'folk rock', 'lounge', 'mellow gold', 'motown', 'rock', 'soul', 'vocal jazz']",172973,FALSE,0.548,0.466,2,-8.894,1,0.028,0.454,0,0.177,0.646,127.496,4
49065,"Carrie Underwood","Don't Forget To Remember Me","['contemporary country', 'country', 'country dawn', 'dance pop', 'oklahoma country', 'pop', 'post-teen pop']",240266,FALSE,0.434,0.608,2,-4.281,1,0.0311,0.564,0,0.283,0.331,78.606,4
14160,"Demi Lovato","Don't Forget","['dance pop', 'pop', 'post-teen pop']",223160,FALSE,0.607,0.437,4,-7.592,1,0.153,0.501,1.24e-06,0.629,0.619,180.048,4
3387,"Fun Factory","Don't Go Away","['bubblegum dance', 'eurodance', 'europop', 'hip house']",210600,FALSE,0.517,0.788,8,-3.124,1,0.0481,0.00335,2.25e-06,0.559,0.586,200.075,4
90650,"Chanson","Don't Hold Back","['chanson']",216280,FALSE,0.727,0.697,0,-10.194,1,0.0579,0.0169,0.00581,0.145,0.909,105.576,4
32740,"Rusty Wier","Don't It Make You Wanna Dance?","['texas country']",225479,FALSE,0.722,0.89,9,-7.639,1,0.034,0.0512,0.00394,0.356,0.843,126.428,4
80788,"Billy Currington","Don't It","['contemporary country', 'country', 'country road', 'modern country rock']",184506,FALSE,0.503,0.824,3,-4.039,1,0.0524,0.083,0,0.21,0.448,161.981,4
48886,"Wilson Pickett","Don't Knock My Love - Pt. 1","['brill building pop', 'classic rock', 'classic soul', 'folk rock', 'funk', 'memphis soul', 'motown', 'rock-and-roll', 'soul', 'southern soul']",136400,FALSE,0.731,0.701,7,-8.722,0,0.0287,0.157,6.75e-06,0.0595,0.961,107.521,4
86257,"Cinderella","Don't Know What You Got (Till It's Gone)","['album rock', 'glam metal', 'hard rock', 'metal', 'rock']",354640,FALSE,0.384,0.535,9,-9.939,1,0.0289,0.238,0.00045,0.0533,0.232,132.445,4
7357,"Thelma Houston","Don't Leave Me This Way","['disco', 'diva house', 'motown']",217733,FALSE,0.529,0.671,0,-9.745,0,0.0594,0.0972,9.99e-06,0.0917,0.673,121.071,4
99926,"REO Speedwagon","Don't Let Him Go","['album rock', 'classic rock', 'folk rock', 'hard rock', 'heartland rock', 'mellow gold', 'pop rock', 'rock', 'soft rock']",225106,FALSE,0.497,0.961,7,-5.774,1,0.0691,0.246,0.00125,0.129,0.675,105.593,4
41835,"The Crusaders","Don't Let It Get You Down","['funk', 'jazz funk', 'jazz fusion', 'smooth jazz', 'soul jazz']",183506,FALSE,0.821,0.529,8,-13.157,1,0.0335,0.134,0.857,0.0299,0.969,108.506,4
84078,"The Band Perry","Don't Let Me Be Lonely","['contemporary country', 'country', 'country dawn', 'country road', 'modern country rock']",223999,FALSE,0.599,0.4,1,-13.474,1,0.0273,0.0105,0.0274,0.122,0.1,110.988,4
60889,"The Chainsmokers Featuring Daya","Don't Let Me Down","['electropop', 'pop', 'tropical house']",208373,FALSE,0.532,0.869,11,-5.094,1,0.172,0.157,0.00508,0.136,0.422,159.803,4
2363,"B.o.B","Don't Let Me Fall","['atl hip hop', 'dance pop', 'hip hop', 'pop', 'pop rap', 'rap', 'southern hip hop']",275386,TRUE,0.543,0.73,1,-6.086,0,0.0384,0.00631,0,0.213,0.267,150.187,4
64461,"Archie Bell & The Drells","Don't Let The Music Slip Away","['beach music', 'classic soul', 'disco', 'motown', 'northern soul', 'philly soul', 'quiet storm', 'rhythm and blues', 'soul', 'southern soul']",134879,FALSE,0.527,0.545,4,-8.355,0,0.0402,0.592,0,0.358,0.732,74.922,4
12953,"Ray Charles","Don't Let The Sun Catch You Cryin'","['adult standards', 'classic soul', 'jazz blues', 'piano blues', 'soul', 'soul blues', 'vocal jazz']",225333,FALSE,0.197,0.316,5,-10.559,1,0.0366,0.63,6.32e-05,0.125,0.248,181.348,3
42728,"Gerry And The Pacemakers","Don't Let The Sun Catch You Crying","['adult standards', 'brill building pop', 'british invasion', 'bubblegum pop', 'classic uk pop', 'folk rock', 'merseybeat', 'rock-and-roll']",157093,FALSE,0.477,0.352,1,-14.165,1,0.03,0.406,0,0.122,0.478,106.773,4
61115,"Elton John","Don't Let The Sun Go Down On Me","['glam rock', 'mellow gold', 'piano rock']",336733,FALSE,0.437,0.571,0,-8.91,1,0.0323,0.401,2.04e-05,0.77,0.261,138.712,4
35728,"Oasis","Don't Look Back In Anger","['britpop', 'madchester', 'modern rock', 'permanent wave', 'rock']",289559,FALSE,0.333,0.922,0,-4.087,1,0.0592,0.0596,2.05e-06,0.126,0.335,162.978,4
93001,"Go West","Don't Look Down - The Sequel","['dance rock', 'mellow gold', 'new romantic', 'new wave', 'new wave pop', 'soft rock', 'synthpop']",259640,FALSE,0.669,0.943,3,-7.354,1,0.0612,0.0876,3.21e-06,0.102,0.606,129.999,4
18832,"John Waite","Don't Lose Any Sleep","['album rock', 'mellow gold', 'new wave pop', 'soft rock']",227960,FALSE,0.667,0.593,9,-12.518,1,0.0383,0.129,0,0.0355,0.668,104.901,4
32887,"Patrick Simmons","Don't Make Me Do It","['deep soft rock', 'yacht rock']",173653,FALSE,0.656,0.73,4,-6.607,1,0.041,0.022,0.00322,0.135,0.959,125.489,4
45710,"Sybil","Don't Make Me Over","['diva house', 'hip house']",243426,FALSE,0.607,0.786,0,-7.081,1,0.0596,0.00552,0.000169,0.0673,0.905,96.569,4
70382,"The Marvelettes","Don't Mess With Bill","['brill building pop', 'classic girl group', 'classic soul', 'motown', 'quiet storm', 'rhythm and blues', 'soul', 'southern soul']",169533,FALSE,0.68,0.542,2,-10.398,1,0.0336,0.338,0,0.127,0.5,116.242,4
18809,"Nivea Featuring Brian & Brandon Casey","Don't Mess With My Man","['atl hip hop', 'deep pop r&b', 'hip pop', 'r&b', 'urban contemporary']",213226,FALSE,0.879,0.73,11,-4.369,0,0.164,0.114,0,0.241,0.885,99.925,4
63297,"Taylor Dayne","Don't Rush Me","['freestyle', 'hi-nrg', 'new wave pop', 'soft rock']",228000,FALSE,0.73,0.906,7,-4.729,0,0.0412,0.407,2.64e-05,0.288,0.959,130.267,4
27142,"Silk","Don't Rush","['edm', 'house', 'tropical house']",260573,FALSE,0.651,0.542,3,-9.508,0,0.0375,0.000812,0,0.295,0.377,143.385,4
42080,"Billy Squier","Don't Say You Love Me","['album rock', 'classic rock', 'glam metal', 'hard rock', 'heartland rock', 'mellow gold', 'rock', 'soft rock']",270226,FALSE,0.418,0.933,11,-4.812,1,0.0362,0.051,0.000177,0.32,0.776,179.574,4
91532,"Journey","Don't Stop Believin'","['album rock', 'classic rock', 'hard rock', 'mellow gold', 'rock', 'soft rock']",250986,FALSE,0.5,0.748,4,-9.072,1,0.0363,0.127,0,0.447,0.514,118.852,4
61072,"Queen","Don't Stop Me Now","['glam rock', 'rock']",209413,FALSE,0.559,0.855,5,-5.077,1,0.186,0.0488,0.000681,0.68,0.605,156.311,4
57790,"The Black Eyed Peas","Don't Stop The Party","['dance pop', 'pop', 'pop rap']",368143,FALSE,0.817,0.7,0,-8.328,0,0.0544,0.0412,0.000164,0.0875,0.474,128.006,4
56356,"Glee Cast","Don't Stop","['glee club', 'hollywood', 'post-teen pop']",232000,FALSE,0.473,0.604,7,-4.034,1,0.0337,0.038,0,0.103,0.271,123.857,4
86830,"Jermaine Jackson","Don't Take It Personal","['disco', 'funk', 'post-disco', 'quiet storm', 'urban contemporary']",271013,FALSE,0.853,0.484,3,-8.634,0,0.068,0.329,0.00013,0.0569,0.778,94.849,4
50382,"Avant","Don't Take Your Love Away","['dance pop', 'deep pop r&b', 'hip pop', 'neo soul', 'new jack swing', 'pop rap', 'r&b', 'urban contemporary']",278946,FALSE,0.431,0.525,7,-5.502,1,0.0971,0.36,0,0.0859,0.375,185.733,3
99754,"Gloria Lynne","Don't Take Your Love From Me","['vocal jazz']",204706,FALSE,0.205,0.183,7,-12.647,1,0.0306,0.98,0.0535,0.236,0.109,167.612,3
36538,"The Beau Brummels","Don't Talk To Strangers","['brill building pop', 'bubblegum pop', 'classic garage rock', 'country rock', 'folk rock', 'freakbeat', 'merseybeat', 'psychedelic rock']",140759,FALSE,0.393,0.789,2,-6.764,1,0.0393,0.508,8.57e-06,0.329,0.607,136.606,4
36313,"Martha Davis","Don't Tell Me The Time","[]",212933,FALSE,0.652,0.634,9,-9.677,1,0.0271,0.0197,6.85e-06,0.117,0.587,122.004,4
54393,"Jake Owen","Don't Think I Can't Love You","['contemporary country', 'country', 'country road', 'modern country rock']",185106,FALSE,0.435,0.558,10,-5.423,1,0.0342,0.26,0,0.245,0.203,115.742,3
60923,"Frankie Avalon","Don't Throw Away All Those Teardrops","['adult standards', 'brill building pop', 'bubblegum pop', 'doo-wop', 'rock-and-roll']",149906,FALSE,0.565,0.308,7,-11.841,1,0.0269,0.919,0.00139,0.312,0.454,82.761,3
51183,"Bettye Swann","Don't Touch Me","['classic soul', 'motown', 'rhythm and blues', 'soul', 'southern soul']",153986,FALSE,0.582,0.28,9,-13.936,1,0.0289,0.859,0.112,0.092,0.57,102.11,3
74894,"Solange Featuring Sampha","Don't Touch My Hair","['alternative r&b', 'art pop', 'dance pop', 'electropop', 'escape room', 'hip pop', 'indie soul', 'neo soul', 'pop', 'pop rap', 'r&b', 'urban contemporary']",257546,TRUE,0.823,0.411,0,-7.061,1,0.0557,0.409,0.00135,0.649,0.397,90.997,4
22428,"CROW","Don't Try To Lay No Boogie Woogie On The ""King Of Rock & Roll""","['folk', 'lilith', 'mellow gold', 'neo mellow', 'new wave pop', 'permanent wave', 'pop rock', 'rock']",153040,FALSE,0.499,0.838,9,-11.644,1,0.0748,0.606,1.67e-05,0.574,0.84,92.598,4
10271,"Toni Childs","Don't Walk Away","[]",238973,FALSE,0.661,0.811,11,-10.789,1,0.0345,0.0848,2.45e-05,0.119,0.734,115.132,4
35348,"Bee Gees","Don't Wanna Live Inside Myself","['disco', 'mellow gold', 'soft rock']",325173,FALSE,0.373,0.285,0,-14.04,1,0.0312,0.663,0.000281,0.281,0.173,111.775,4
26439,"Gloria Estefan","Don't Wanna Lose You","['dance pop', 'latin', 'latin pop', 'new wave pop', 'pop', 'soft rock']",250066,FALSE,0.545,0.356,5,-14.127,1,0.0245,0.413,1.56e-06,0.128,0.465,82.214,4
23294,"Pablo Cruise","Don't Want To Live Without It","['country rock', 'folk rock', 'mellow gold', 'soft rock', 'yacht rock']",276666,FALSE,0.644,0.448,5,-14.51,1,0.0434,0.00832,1.42e-05,0.262,0.892,106.255,4
57555,"Raspberries","Don't Want To Say Goodbye","['beatlesque', 'bubblegum pop', 'jangle pop', 'power pop', 'pub rock']",308080,FALSE,0.352,0.7,2,-6.43,1,0.0312,0.684,0.156,0.113,0.245,84.09,4
91515,"John Mayall","Don't Waste My Time","['blues', 'blues rock', 'british blues', 'british invasion', 'classic rock', 'country rock', 'electric blues', 'folk rock', 'modern blues', 'rock', 'roots rock']",294760,FALSE,0.541,0.875,4,-10.547,1,0.0559,0.181,0.317,0.587,0.784,114.04,4
84651,"Stevie Wonder","Don't You Worry 'Bout A Thing","['adult standards', 'motown', 'quiet storm', 'soul']",284840,FALSE,0.714,0.726,11,-9.218,1,0.0408,0.0316,0,0.066,0.92,124.71,4
10629,"Chris Janson","Done","['contemporary country', 'country', 'country road', 'modern country rock']",220120,FALSE,0.565,0.835,9,-3.379,1,0.0335,0.34,0,0.0726,0.763,105.007,4
97203,"Ritchie Valens","Donna","['adult standards', 'brill building pop', 'doo-wop', 'rock-and-roll', 'rockabilly']",150973,FALSE,0.472,0.225,5,-12.581,1,0.0263,0.864,0,0.111,0.29,100.299,3
42619,"The Bermudas","Donnie","[]",133640,FALSE,0.394,0.361,0,-9.246,1,0.0283,0.176,0.00042,0.488,0.774,201.109,4
1206,"The Dramatics","Door To Your Heart","['classic soul', 'disco', 'funk', 'jazz funk', 'memphis soul', 'motown', 'quiet storm', 'soul', 'southern soul']",345706,FALSE,0.466,0.564,1,-9.217,0,0.055,0.763,0.372,0.0959,0.514,77.269,4
86532,"Lil Wayne Featuring Nivea","Dope New Gospel","['hip hop', 'new orleans rap', 'pop rap', 'rap', 'trap']",207186,TRUE,0.651,0.719,0,-3.924,1,0.301,0.227,0,0.109,0.402,116.77,4
63528,"Dave & Ansil Collins","Double Barrel","['gangster rap', 'harlem hip hop', 'hip hop', 'nyc rap', 'pop rap', 'rap', 'southern hip hop', 'trap']",166213,FALSE,0.846,0.543,10,-8.244,1,0.188,0.113,1.44e-05,0.0849,0.771,80.812,4
1901,"Swingin' Medallions","Double Shot (Of My Baby's Love)","[]",138947,FALSE,0.66,0.774,5,-8.016,0,0.0317,0.0505,0.0297,0.291,0.967,131.173,4
82781,"Foreigner","Double Vision","['album rock', 'classic rock', 'hard rock', 'mellow gold', 'rock', 'soft rock']",224533,FALSE,0.682,0.711,9,-7.637,0,0.0325,0.179,9.53e-05,0.126,0.766,129.546,4
96249,"James Brown","Down And Out In New York City","['funk', 'motown', 'soul']",283493,FALSE,0.538,0.535,1,-11.327,1,0.0756,0.6,0.000126,0.122,0.835,173.67,4
56434,"Lou Rawls","Down Here On The Ground","['adult standards', 'classic soul', 'disco', 'lounge', 'motown', 'philly soul', 'quiet storm', 'soul', 'soul blues', 'vocal jazz']",217600,FALSE,0.396,0.66,7,-6.446,1,0.0377,0.752,0.000648,0.323,0.438,95.529,4
85618,"Solomon Burke","Down In The Valley","['brill building pop', 'classic soul', 'funk', 'motown', 'soul', 'soul blues', 'southern soul', 'vocal jazz']",154200,FALSE,0.707,0.486,1,-10.583,1,0.0297,0.833,4.07e-06,0.11,0.965,106.193,4
23022,"Jimmy Reed","Down In Virginia","['blues', 'blues rock', 'chicago blues', 'electric blues', 'harmonica blues', 'rock-and-roll', 'traditional blues']",144441,FALSE,0.602,0.794,9,-7.551,0,0.0755,0.846,0.00174,0.0797,0.608,110.829,4
47600,"Big Brother And The Holding Company","Down On Me","['classic rock', 'psychedelic rock', 'rock']",124760,FALSE,0.597,0.582,7,-9.424,1,0.0498,0.255,0.0168,0.137,0.795,141.15,3
86930,"Jake Owen","Down To The Honkytonk","['contemporary country', 'country', 'country road', 'modern country rock']",186866,TRUE,0.634,0.808,3,-4.12,1,0.0516,0.19,0,0.0898,0.937,82.021,4
7234,"Rod Stewart","Downtown Train","['adult standards', 'mellow gold', 'soft rock']",279413,FALSE,0.527,0.584,10,-7.965,1,0.0314,0.0878,0.000103,0.117,0.271,114.941,4
39721,"Motley Crue","Dr. Feelgood","['glam metal', 'hard rock', 'metal', 'rock', 'sleaze rock']",290186,FALSE,0.535,0.967,2,-4.082,1,0.068,0.000886,0.0204,0.233,0.347,110.97,4
26384,"Roy Orbison","Dream Baby (How Long Must I Dream)","['adult standards', 'brill building pop', 'bubblegum pop', 'folk rock', 'mellow gold', 'rock', 'rock-and-roll', 'rockabilly', 'soft rock']",153800,FALSE,0.436,0.525,5,-9.248,1,0.0321,0.541,2.82e-05,0.11,0.877,153.618,4
39085,"Bobby Darin","Dream Lover","['adult standards', 'brill building pop', 'easy listening', 'lounge', 'motown', 'rock-and-roll', 'rockabilly', 'soul', 'swing', 'vocal jazz']",150706,FALSE,0.526,0.774,5,-1.692,1,0.0459,0.715,0,0.437,0.715,131.715,4
65597,"Aerosmith","Dream On","['album rock', 'classic rock', 'hard rock', 'rock']",266960,FALSE,0.307,0.433,1,-10.057,1,0.029,0.388,9.08e-05,0.332,0.224,160.9,4
85435,"Glee Cast Featuring Neil Patrick Harris","Dream On","['glee club', 'hollywood', 'post-teen pop']",274133,FALSE,0.417,0.622,3,-4.706,1,0.0299,0.0128,2.46e-06,0.614,0.224,154.022,4
34279,"The First Class","Dreams Are Ten A Penny","[]",160732,FALSE,0.718,0.588,0,-11.36,1,0.0532,0.0507,0,0.589,0.65,109.103,4
96901,"Don McLean","Dreidel","['adult standards', 'classic rock', 'folk', 'folk rock', 'mellow gold', 'rock', 'singer-songwriter', 'soft rock', 'traditional folk']",227266,FALSE,0.483,0.493,9,-14.599,1,0.0449,0.678,0,0.145,0.654,148.438,4
89951,"Jerrod Niemann","Drink To That All Night","['contemporary country', 'country', 'country road', 'modern country rock', 'redneck']",224813,FALSE,0.639,0.846,9,-6.184,0,0.0439,0.0325,0,0.116,0.475,115.965,4
76298,"Michael Peterson","Drink, Swear, Steal & Lie","['country', 'country road']",182306,FALSE,0.672,0.697,11,-7.223,1,0.0251,0.427,0,0.131,0.757,103.358,4
48539,"Lee Brice","Drinking Class","['contemporary country', 'country', 'country road', 'modern country rock']",207346,FALSE,0.663,0.53,1,-9.763,1,0.0301,0.0886,0,0.154,0.269,109.003,4
95360,"Train","Drive By","['neo mellow', 'pop', 'pop rock']",195973,FALSE,0.765,0.837,1,-3.113,0,0.032,0.00107,1.06e-05,0.0801,0.721,122.028,4
65082,"Eddie Rabbitt","Drivin' My Life Away","['classic country pop', 'country', 'country rock', 'mellow gold', 'soft rock']",194666,FALSE,0.66,0.639,9,-12.749,1,0.0369,0.0966,0.00104,0.0442,0.843,84.124,4
99571,"Foghat","Drivin' Wheel","['album rock', 'blues rock', 'british blues', 'classic rock', 'country rock', 'hard rock', 'heartland rock', 'mellow gold', 'rock', 'soft rock']",313800,FALSE,0.475,0.913,7,-9.084,1,0.0531,0.00954,0.083,0.0916,0.664,139.71,4
54857,"Republica","Drop Dead Gorgeous","['candy pop', 'new wave pop']",271373,FALSE,0.571,0.87,5,-5.747,1,0.0366,0.000417,0.00109,0.13,0.522,135.789,4