-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathOpenAIRE_originalId.txt
More file actions
8695 lines (8695 loc) · 652 KB
/
OpenAIRE_originalId.txt
File metadata and controls
8695 lines (8695 loc) · 652 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
https://figshare.com/articles/Additional_file_3_of_Gene-specific_patterns_of_expression_variation_across_organs_and_species/4353713
https://figshare.com/articles/MOESM7_of_The_influence_of_solid_state_information_and_descriptor_selection_on_statistical_models_of_temperature_dependent_aqueous_solubility/7027163
https://figshare.com/articles/BC_150527_K299_HUNDRED_ALK_UN/4201467
https://figshare.com/articles/Kalb_protein_quantification_test/5327485
https://researchdata.bath.ac.uk/514/
https://www.kaggle.com/camnugent/california-housing-prices
https://www.kaggle.com/zuhaib/california-housing-prices
https://www.kaggle.com/abhilashanil/california-housing-prices
https://www.kaggle.com/lilacs0424/googlenewsvectorsnegative300
https://www.kaggle.com/sandreds/googlenewsvectorsnegative300
https://www.kaggle.com/leadbest/googlenewsvectorsnegative300
https://figshare.com/articles/whopop_dta/5633398
https://figshare.com/articles/mosquito_csv/4983113
https://figshare.com/articles/UHNA7_csv/5907049
https://figshare.com/articles/A_Summary_of_a_redux18_Archive/5891767
https://figshare.com/articles/Theoretical_ribosomal_protein_mass_fingerprint_of_Clostridium_botulinum/6558704
https://figshare.com/articles/_Movie_S1b_Collembole_mouthpart_movement/4085718
https://figshare.com/articles/Iserbyt_et_al_2018_Ecol_Evol/7273985
https://figshare.com/articles/Additional_file_5_of_Genome_and_transcriptome_analysis_of_the_Mesoamerican_common_bean_and_the_role_of_gene_duplications_in_establishing_tissue_and_temporal_specialization_of_genes/4395230
https://figshare.com/articles/In-situ_study--Office_environment_Data_from_paper_Continuous_Identification_in_Smart_Environments_Using_Wrist-Worn_Inertial_Sensors_/6086162
https://figshare.com/articles/E_rare_marginatum_151_fastq/5468278
https://figshare.com/articles/Survival_matricide_censored/4640221
https://figshare.com/articles/E_rare_arboreum_683_fastq/5468218
https://figshare.com/articles/Additional_file_2_of_Examining_national_and_district-level_trends_in_neonatal_health_in_Peru_through_an_equity_lens_a_success_story_driven_by_political_will_and_societal_advocacy/4410584
https://figshare.com/articles/Additional_file_6_of_Logistic_regression_model_training_based_on_the_approximate_homomorphic_encryption/7200140
https://figshare.com/articles/Intervention_stuyd_primary_care_educational_outreach_vistis_for_knee_osteoarthritis/6743348
https://figshare.com/articles/Additional_file_1_of_Statistical_analysis_of_a_Bayesian_classifier_based_on_the_expression_of_miRNAs/4370732
https://www.kaggle.com/souravroy1/stock-market-data
https://www.kaggle.com/alukosayoenoch/stock-market-data
https://figshare.com/articles/STRUCTURE_data_Class3Rep4/4194576
https://figshare.com/articles/MERRAclim_2_5m_min_00s/5291551
https://figshare.com/articles/RAD_datasetFRESH_xml_SNAPP_ingroup/4260431
https://figshare.com/articles/Modern_pollen_vegetation_studies_from_the_Sajnekhali_Island_Wildlife_Sanctuary_Sundarbans_Eastern_India/6171029
https://figshare.com/articles/datasets_zip/5808720
https://figshare.com/articles/RAW_files/4254047
https://figshare.com/articles/Client_Flow_Dataset_BASE_2014_10_10_CSV_De-Identified_/6032435
https://figshare.com/articles/Figure_S2/4187232
https://figshare.com/articles/Files_for_comparison_of_sequence_aligners/4191591
https://figshare.com/articles/Additional_file_3_Table_S3_of_The_rumen_microbial_metagenome_associated_with_high_methane_production_in_cattle/4346444
https://figshare.com/articles/E_rare_biolleyi_147_fastq/5468233
https://figshare.com/articles/Additional_file_1_of_Enrichment_of_extracellular_vesicles_from_tissues_of_the_central_nervous_system_by_PROSPR/4375988
https://figshare.com/articles/Additional_file_1_of_Challenges_and_predictors_of_exclusive_breastfeeding_among_mothers_attending_the_child_welfare_clinic_at_a_regional_hospital_in_Ghana_a_descriptive_cross-sectional_study/4736797
https://figshare.com/articles/Simulation_data_on_mobile_pastoralists_in_northeastern_Nigeria_13/4202151
https://figshare.com/articles/Additional_file_2_of_Unraveling_the_complexity_of_transcriptomic_metabolomic_and_quality_environmental_response_of_tomato_fruit/4793143
https://figshare.com/articles/Additional_file_11_Table_S10_of_Oncogenic_long_noncoding_RNA_landscape_in_breast_cancer/5240350
https://figshare.com/articles/Cybertype_Terataner_balrog_CASENT0472559_holotype_worker_1/4784671
https://figshare.com/articles/Additional_file_2_of_The_common_redstart_as_a_suitable_model_to_study_cuckoo-host_coevolution_in_a_unique_ecological_context/4412873
https://figshare.com/articles/Dataset_Search_WebApp/5217958
https://figshare.com/articles/Additional_file_1_of_Immunomodulatory_effects_of_heat_stress_and_lipopolysaccharide_on_the_bursal_transcriptome_in_two_distinct_chicken_lines/7033943
https://figshare.com/articles/Additional_file_2_of_Habitat_structure_is_linked_to_the_evolution_of_plumage_colour_in_female_but_not_male_fairy-wrens/4591396
https://figshare.com/articles/DACT_Dataset_of_Annotated_Car_Trajectories/5005289
https://figshare.com/articles/Additional_file_4_Matrix_S3_of_Dengue_research_networks_building_evidence_for_policy_and_planning_in_Brazil/4408508
https://figshare.com/articles/ebola_txt/3482270
https://figshare.com/articles/E_common_stellipilum_50_fastq/5468086
https://figshare.com/articles/RAD5_fastq/7268753
https://figshare.com/articles/Blood-based_spectroscopy_toward_investigation_of_neurodegenerative_diseases/5309797
https://figshare.com/articles/E_rare_baezense_257_fastq/5468230
https://figshare.com/articles/The_relationship_of_ungulate_13C_and_environment_in_the_temperate_biome_of_southern_Africa_and_its_palaeoclimatic_application/6292187
https://figshare.com/articles/MUAC_dataset/5785878
https://figshare.com/articles/Available_data/4100310
https://figshare.com/articles/Ant_colonies_promote_the_diversity_of_soil_microbial_communities/7092920
https://figshare.com/articles/Dataset_Expt2_Nyman_etal_2018/6033518
https://www.kaggle.com/xwolf12/datasetandroidpermissions
https://figshare.com/articles/Genotypes_of_the_invasive_ant_Brachyponera_chinensis_in_its_native_and_introduced_ranges/7193285
https://figshare.com/articles/MOESM1_of_Improved_understanding_of_aqueous_solubility_modeling_through_topological_data_analysis/7369514
https://figshare.com/articles/HiWATER_Dataset_of_thermal_infrared_spectrum_observed_by_BOMEM_MR304_in_the_middle_reaches_of_the_Heihe_River_Basin/4714561
https://figshare.com/articles/Liver_fat_depot_in_inflammatory_bowel_disease_influenced_mainly_by_nutrition_and_indicates_endoscopic_activity/6225560
https://figshare.com/articles/Additional_file_1_of_iDEP_an_integrated_web_application_for_differential_expression_and_pathway_analysis_of_RNA-Seq_data/7490060
https://figshare.com/articles/Additional_file_12_of_Dissection_of_the_molecular_bases_of_genotype_x_environment_interactions_a_study_of_phenotypic_plasticity_of_Saccharomyces_cerevisiae_in_grape_juices/7320464
https://figshare.com/articles/Estimating_the_completeness_of_death_registration_an_empirical_method_-_data/6220403
https://figshare.com/articles/MOESM1_of_Measures_for_interoperability_of_phenotypic_data_minimum_information_requirements_and_formatting/4341440
https://figshare.com/articles/DatasetX_n24/4158861
https://figshare.com/articles/Additional_file_3_of_A_novel_multi-network_approach_reveals_tissue-specific_cellular_modulators_of_fibrosis_in_systemic_sclerosis/4780198
https://figshare.com/articles/An_Dataset_Listing_the_Top_60_Articles_Published_in_the_Journal_of_Digital_Scholarship_in_the_Humanities_According_to_the_Altmetric_Explorer_search_from_11_April_2017_Annotated_with_Corresponding_License_and_Access_Type_and_Results_when_Available_from_the/5278177
https://figshare.com/articles/Theoretical_ribosomal_protein_mass_fingerprint_of_Bacillus_megaterium/6523466
https://www.kaggle.com/TheScientistBR/atribuna
https://www.kaggle.com/ljewell/internal-navigation-dataset
https://www.kaggle.com/valsal27/scholardata
https://www.kaggle.com/wenchenkof2001/mydataset
https://www.kaggle.com/timschutzyang/dataset1
https://www.kaggle.com/rosegao/brandcharacteristics
https://www.kaggle.com/leapoahead/iphone-screenshot-identification
https://www.kaggle.com/deepak242424/iitmhetra
https://www.kaggle.com/bdilday/retrosheet-events-1970-2015
https://www.kaggle.com/bonastreyair/predicting-blood-analysis
https://www.kaggle.com/rtatman/trademark-application
https://www.kaggle.com/loveall/quantifying-wikipedia-usage-in-education
https://www.kaggle.com/theriley106/dea-domestic-arrest-by-year
https://www.kaggle.com/floser/hitters
https://www.kaggle.com/new-york-state/nys-research-project-summaries-beginning-1990
https://www.kaggle.com/cityofLA/la-economic-workforce-development-department
https://www.kaggle.com/nltkdata/mac-morpho
https://www.kaggle.com/cdc/nndss-mumps-to-rabies-animal
https://www.kaggle.com/yurisa2/eurusd-2014-2018
https://www.kaggle.com/new-york-state/life-insurance-in-force-in-the-state-of-new-york
https://www.kaggle.com/chasebank/bank-deposits
https://www.kaggle.com/PromptCloudHQ/us-technology-jobs-on-dicecom
https://www.kaggle.com/edx/course-study
https://www.kaggle.com/new-york-city/ny-union-square-partnership-usp-business-list
https://www.kaggle.com/PromptCloudHQ/us-jobs-on-monstercom
https://www.kaggle.com/us-gpo/united-states-code
https://www.kaggle.com/freecodecamp/all-posts-public-main-chatroom
https://www.kaggle.com/olgabelitskaya/russian-financial-indicators
https://www.kaggle.com/pliptor/a-visual-and-intuitive-traintest-pattern
https://www.kaggle.com/mrisdal/union-membership-coverage
https://www.kaggle.com/jgonzalezferrer/acb-spanish-basketball-league-results
https://www.kaggle.com/new-york-state/new-york-state-index-crimes
https://www.kaggle.com/new-york-city/nyc-recycling-diversion-and-capture-rates
https://www.kaggle.com/san-francisco/sf-master-data-dictionary
https://www.kaggle.com/jbraga/traditional-flute-dataset
https://www.kaggle.com/colinmorris/learntoolspython
https://www.kaggle.com/new-york-state/nys-utility-base-rate-change-delivery-rates
https://www.kaggle.com/sandyhe/songs-emotion
https://www.kaggle.com/census/mean-adjusted-gross-income-for-california
https://www.kaggle.com/baseballstatsonline/offensive-baseball-stats-through-2016
https://www.kaggle.com/camnugent/genome-information-for-sequenced-organisms
https://www.kaggle.com/alogicperson/eminem-dataset-show
https://www.kaggle.com/bls/employment
https://www.kaggle.com/new-york-city/nyc-trade-waste-hauler-licensees
https://www.kaggle.com/pytorch/vgg16bn
https://figshare.com/articles/Learning_from_Data_to_Design_Functional_Materials_without_Inversion_Symmetry_Datasets_/4264190
https://figshare.com/articles/Additional_file_3_of_H2A_monoubiquitination_in_Arabidopsis_thaliana_is_generally_independent_of_LHP1_and_PRC2_activity/4872590
https://www.kaggle.com/sayakchakraborty/airquality
https://www.kaggle.com/citrahsagala/airquality
https://researchdata.bath.ac.uk/415/
https://figshare.com/articles/Field_training_estimating_insects_abundance_using_net-sweeping_technique/3859914
https://www.kaggle.com/google/google-landmarks-dataset
https://www.kaggle.com/IHME/us-countylevel-mortality
https://www.kaggle.com/sohier/calcofi
https://www.kaggle.com/samadkardan/robotic-surgery
https://www.kaggle.com/dipnarayan13/emotions-parts-of-speech-and-tense-for-words
https://www.kaggle.com/cityofoakland/oakland-traffic-signal-locations
https://www.kaggle.com/new-york-city/nyc-buildings
https://www.kaggle.com/nationalparkservice/park-biodiversity
https://www.kaggle.com/city-of-seattle/seattle-business-districts
https://www.kaggle.com/welkin10/airline-sentiment
https://www.kaggle.com/city-of-seattle/sea-building-energy-benchmarking
https://www.kaggle.com/tamber/steam-video-games
https://www.kaggle.com/macespinoza/large-movie-review-dataset-10
https://www.kaggle.com/kmader/symphony-lake-dataset
https://www.kaggle.com/cmenca/new-york-times-hardcover-fiction-best-sellers
https://www.kaggle.com/davidwallach/financial-tweets
https://www.kaggle.com/varshapandey/assignment-data
https://www.kaggle.com/aumashe/feature-subset-selection
https://www.kaggle.com/san-francisco/sf-employee-compensation
https://www.kaggle.com/brandao/diabetes
https://www.kaggle.com/chinapage/china-mobile-user-gemographics
https://www.kaggle.com/daverosenman/nba-finals-team-stats
https://www.kaggle.com/aaronmckisic/pokemon-go-gen-ii-251
https://www.kaggle.com/san-francisco/sf-fire-data-incidents-violations-and-more
https://www.kaggle.com/ihmstefanini/industrial-safety-and-health-analytics-database
https://www.kaggle.com/mzwelch/national-education-longitudinal-survery
https://www.kaggle.com/blackbee2016/discretized-datasets-by-mangrove
https://www.kaggle.com/new-york-city/ny-natural-gas-consumption-by-zip-code-2010
https://www.kaggle.com/irinaachkasova/site-clicks-hits-database
https://www.kaggle.com/san-francisco/sf-plumbing-permits-and-contacts
https://www.kaggle.com/rakuraku678/mnist-60000-hand-written-number-images
https://www.kaggle.com/cityofLA/la-general-city-budget-incremental-changes
https://www.kaggle.com/jayrav13/american-presidency-project
https://www.kaggle.com/cdc/daily-county-level-ozone-and-pm2.5-concentrations
https://www.kaggle.com/electoralcommission/brexit-results
https://www.kaggle.com/akalman/hungarian-parliamentary-elections-results
https://www.kaggle.com/nltkdata/ppattach
https://www.kaggle.com/hpratt/hiring-decision-with-scikit-learn
https://www.kaggle.com/mnabaee/mtlstreetparking
https://www.kaggle.com/nodarokroshiashvili/simple-time-series
https://www.kaggle.com/dmail44/top-movies-of-2017
https://www.kaggle.com/theworldbank/world-bank-intl-debt
https://www.kaggle.com/new-york-city/city-store-the-official-store-of-the-city-of-ny
https://www.kaggle.com/sheenabatra/facebook-data
https://www.kaggle.com/new-york-city/nyc-revenue-comps
https://www.kaggle.com/tpapp157/terrainimagepairs
https://www.kaggle.com/kazimanil/rv-weather
https://www.kaggle.com/mcamli/nba17-18
https://www.kaggle.com/dangrahn/vdiscovery
https://www.kaggle.com/new-york-city/nyc-wi-fi-hotspot-locations
https://www.kaggle.com/new-york-state/nys-metropolitan-transport-authority-mta-data
https://www.kaggle.com/shivamb/imageairepo
https://www.kaggle.com/athontz/nowthatswhaticallmusic
https://www.kaggle.com/cityofLA/los-angeles-bavn-open-bid-opportunities
https://www.kaggle.com/alessiocorrado99/animals10
https://www.kaggle.com/siyuanh/combined-wine-data
https://www.kaggle.com/vasopikof/simple-timeseries-visual-objects-interaction-crm
https://www.kaggle.com/kaggle/us-baby-names
https://www.kaggle.com/joniarroba/how-brazilian-politicians-use-their-quota
https://www.kaggle.com/ashishguptajiit/handwritten-az
https://www.kaggle.com/city-of-seattle/seattle-capital-project-app-projects
https://www.kaggle.com/rajualluri/dataset1
https://www.kaggle.com/sammiedatagirl/fast-food-habit
https://www.kaggle.com/pytorch/squeezenet11
https://www.kaggle.com/cityofLA/los-angeles-building-and-safety-inspections
https://www.kaggle.com/city-of-seattle/seattle-mts-trail-west-of-i-90-bridge
https://www.kaggle.com/giwada/long-term-insurance-in-japan
https://figshare.com/articles/Model_3_datasets_hierarchical_stepping_stone_model_full_datasets/4129455
https://figshare.com/articles/MOESM1_of_Adrenal_suppression_in_children_treated_with_swallowed_fluticasone_and_oral_viscous_budesonide_for_eosinophilic_esophagitis/4354907
https://figshare.com/articles/Data_for_370_species_in_permuted_community/4254299
https://figshare.com/articles/greyhound_pelvic_limb_CT_scan/7240520
https://figshare.com/articles/Terminal_names_and_correspondent_taxa/7502693
https://www.kaggle.com/applecrazy/cmu-book-summary-dataset
https://www.kaggle.com/ymaricar/cmu-book-summary-dataset
https://figshare.com/articles/relative_humidity_pct_1cm_sand_25_shade.zip/956335
https://figshare.com/articles/Friction-stability-permeability_evolution_of_a_fracture_in_granite/5830965
https://figshare.com/articles/Table_S2_from_The_influence_of_wing_morphology_upon_the_dispersal_geographical_distributions_and_diversification_of_the_Corvides_Aves_Passeriformes_/4239407
https://figshare.com/articles/GPS_locations_reindeer_Norway/4096743
https://figshare.com/articles/Additional_file_5_of_Effect_of_flubendazole_on_developing_stages_of_Loa_loa_in_vitro_and_in_vivo_a_new_approach_for_screening_filaricidal_agents/7563611
https://figshare.com/articles/A_controlled_study_investigating_the_benefits_of_interacting_with_a_house-trained_dog_on_University_student_s_mood_and_anxiety_-_PANAS_X_Negative_Affect_Scores/7182014
https://figshare.com/articles/PCA_Analyses_R_code_/3995151
https://figshare.com/articles/TGA_data_for_mixed_ligand_nanoparticles/7059260
https://figshare.com/articles/substrate_temperature_degC_sand_100_shade.zip/956994
https://figshare.com/articles/Maximum_Parsimony_strict_consensus_tree_of_the_combined_plastid_dataset/4169406
https://figshare.com/articles/BI_tree_mitochondrial_dataset_106_taxa_PhyloBayes_CATGTR_G/6070334
https://figshare.com/articles/hooper_et_al_2015_family_dyads/4076568
https://figshare.com/articles/Manihot-aligned_plastome_sequence_alignments/4169316
https://figshare.com/articles/BIOL2050_lab_2_sample_datasheets_xlsx/3846822
https://figshare.com/articles/Additional_file_3_of_Convergent_evolution_of_hemoglobin_switching_in_jawed_and_jawless_vertebrates/4424027
https://figshare.com/articles/Additional_file_1_of_Group-sequential_analysis_may_allow_for_early_trial_termination_illustration_by_an_intra-observer_repeatability_study/5443309
https://figshare.com/articles/Source_code_S1_An_example_R_script_for_data_analysis_from_Network_resilience_of_mutualistic_ecosystems_and_environmental_changes_an_empirical_study/7031129
https://figshare.com/articles/Cybertype_Terataner_balrog_CASENT0426614_paratype_queen_2/4784689
https://figshare.com/articles/Clemente-et-al_Data_BEHECO-2017-0362/6038333
https://figshare.com/articles/Pairwise_relatedness_full_MNandILremoved_txt/4714972
https://figshare.com/articles/MERRAclim_5m_mean_00s/5291476
https://researchdata.bath.ac.uk/172/
https://figshare.com/articles/Social_interactions/6968294
https://figshare.com/articles/Additional_file_6_of_Conserved_patterns_of_integrated_developmental_plasticity_in_a_group_of_polyphenic_tropical_butterflies/4701331
https://figshare.com/articles/Table_S9_from_Characterization_of_RBP9_and_RBP10_two_developmentally_regulated_RNA-binding_proteins_in_i_Trypanosoma_brucei_i_/4769587
https://figshare.com/articles/OTU_Table_even_depth_3000/6180011
https://figshare.com/articles/Cumulative_Stress_Restricts_Niche_Filling_Potential_of_Habitat-Forming_Kelps_in_a_Future_Climate/5195284
https://figshare.com/articles/Additional_file_2_Table_S1_of_Founder_events_and_pre-glacial_divergences_shape_the_genetic_structure_of_European_Collembola_species/4355078
https://figshare.com/articles/quantitative_song_traits/6137720
https://figshare.com/articles/Microlandscapes_MSPA_zip/5547763
https://figshare.com/articles/Additional_file_1_of_Dietary_mineral_supplies_in_Malawi_spatial_and_socioeconomic_assessment/4366472
https://figshare.com/articles/Additional_file_1_Table_S1_of_Parenting_style_resilience_and_mental_health_of_community-dwelling_elderly_adults_in_China/4406159
https://figshare.com/articles/OMI-Aura_L2-OMIAuraSO2_2012m1222-o44888_v01-00-2014m0107t114720_h5/3464303
https://figshare.com/articles/Additional_file_3_of_Immunogenicity_and_therapeutic_effects_of_a_Mycobacterium_tuberculosis_rv2190c_DNA_vaccine_in_mice/4701193
https://figshare.com/articles/Additional_file_8_of_The_biocontrol_agent_Pseudomonas_chlororaphis_PA23_primes_Brassica_napus_defenses_through_distinct_gene_networks/5122153
https://figshare.com/articles/MOESM3_of_LA-iMageS_a_software_for_elemental_distribution_bioimaging_using_LA_ICP_MS_data/4671490
https://figshare.com/articles/human_cell_line_hCAGE_hg19_tpm_refgene_osc/4099035
https://www.kaggle.com/falkow91/internationalairlinepassengers
https://www.kaggle.com/andreazzini/international-airline-passengers
https://figshare.com/articles/ESM_3_-_complete_model_dataset/4186950
https://figshare.com/articles/variants_v2_mvf_tar/6713264
https://figshare.com/articles/VoxEL/6104750
https://figshare.com/articles/S1_Table_Signalment_Prevotella_and_F_prausnitizii_xlsx/4541227
https://figshare.com/articles/Additional_file_1_of_Effect_of_structured_training_programme_on_the_knowledge_and_behaviors_of_breast_and_cervical_cancer_screening_among_the_female_teachers_in_Turkey/5682973
https://figshare.com/articles/CH_LT_SSR_HfMV1group_300916_dryad/4608685
https://www.kaggle.com/new-york-state/nys-nyserda-low-to-moderate-income-census-populat
https://www.kaggle.com/prashantkikani/emoji-unicode-names
https://www.kaggle.com/khsamaha/aviation-accident-database-synopses
https://www.kaggle.com/rhuebner/human-resources-data-set
https://www.kaggle.com/cblesa/travian-buildings
https://www.kaggle.com/inugami/infocomm-industry-revenue
https://www.kaggle.com/mizosalah/this-is-my-first-data-set
https://www.kaggle.com/theriley106/alexa-skill-database
https://www.kaggle.com/nltkdata/vader-lexicon
https://www.kaggle.com/rtatman/corpus-of-bilingual-childrens-speech
https://www.kaggle.com/jpdaza/udacity-intro-to-data-analysis
https://www.kaggle.com/jingbinxu/sample-of-car-data
https://www.kaggle.com/doj/presidential-pardons
https://www.kaggle.com/eagles2f/evans-fruit-dataset
https://www.kaggle.com/hanriver0618/manhattan-or-not
https://www.kaggle.com/ard5001/titanic
https://www.kaggle.com/souravroy1/number-sequence-system
https://www.kaggle.com/gourav97/san-franscisco-checkin
https://www.kaggle.com/krsoninikhil/pual-graham-essays
https://www.kaggle.com/new-york-state/nys-hvac-residential-statewide-contractor-survey
https://www.kaggle.com/koki25ando/city-list-of-australia
https://www.kaggle.com/sohier/state-election-results-1971-2012
https://www.kaggle.com/new-york-city/new-york-city-inspections
https://www.kaggle.com/new-york-state/nys-parole-board-decisions-for-initial-interviews
https://www.kaggle.com/khsamaha/solar-flares-rhessi
https://www.kaggle.com/dataturks/face-dataset-with-age-emotion-ethnicity
https://www.kaggle.com/jpmiller/publicassistance
https://www.kaggle.com/lakshyak/p2hdata
https://www.kaggle.com/theworldbank/world-bank-population-estimates-and-ranking
https://www.kaggle.com/oecd-org/oedcd-ratio-of-exports-to-imports
https://www.kaggle.com/jangedoo/utkface-new
https://www.kaggle.com/cityofoakland/oak-chronic-disease-preventable-hospitalizations
https://www.kaggle.com/richardjameslopez/compiled-ether-data-set
https://www.kaggle.com/lidasong/hpv-ieee-ml-sjtu
https://www.kaggle.com/sinusoidal36/ethereum-transactions-blocks-0-3499999
https://www.kaggle.com/zusmani/mygenome
https://www.kaggle.com/noaa/noaa-global-surface-summary-of-the-day
https://www.kaggle.com/mrisdal/ben-hamners-tweets
https://www.kaggle.com/GoogleNewsLab/top-how-tos-on-google-2004-to-2017
https://www.kaggle.com/rtatman/noun-compositionality-judgements
https://www.kaggle.com/antallen/comparing-numerical-movie-review-scores
https://www.kaggle.com/cityofoakland/oakland-long-term-business-residential-vacancies
https://www.kaggle.com/rtatman/utility-scripts
https://www.kaggle.com/abedkhooli/arabic-wiki-data-dump-2018
https://www.kaggle.com/derr1011/iphone7-tweets
https://www.kaggle.com/wol4aravio/ny-taxi-trip-duration-enriched-by-mathematica
https://www.kaggle.com/uciml/sms-spam-collection-dataset
https://www.kaggle.com/irfanazeem/tailpipe-emissions-for-sedan-vehicle
https://www.kaggle.com/andreybulezyuk/numerai2017tournament52
https://www.kaggle.com/osbornep/uk-marriage-and-divorce-figures
https://www.kaggle.com/san-francisco/sf-developers-of-major-city-projects-filings
https://www.kaggle.com/lp187q/ndxt-index-until-jan-202018
https://figshare.com/articles/The_large-scale_organization_of_shape_processing_in_the_ventral_and_dorsal_pathways_Subject_160926101408_Experiment_2/5441857
https://figshare.com/articles/Supplementary_table_5/5230732
https://www.kaggle.com/new-york-city/.nyc-domain-registrations
https://www.kaggle.com/new-york-city/dot-nyc-domain-registrations
https://figshare.com/articles/Additional_file_2_of_Epidemiology_of_non-traumatic_spinal_cord_injury_in_Uganda_a_single_center_prospective_study_with_MRI_evaluation/7592483
https://www.kaggle.com/zaeemnalla/fifa-world-cup-matches
https://www.kaggle.com/abecklas/fifa-world-cup
https://www.kaggle.com/naaoboshieatio/usda-barley
https://www.kaggle.com/rtatman/usda-barley
https://www.kaggle.com/rtatman/usda-barley-data
https://www.kaggle.com/irenecodelab/usda-barley
https://figshare.com/articles/Image_sequence_of_66_spheroids_to_be_used_with_the_macro_for_stacks/3990381
https://figshare.com/articles/Additional_file_1_of_Genomic_positional_conservation_identifies_topological_anchor_point_RNAs_linked_to_developmental_loci/5985691
https://figshare.com/articles/Santangelo-et-al_Proc-B_2018_Summary-datasets/6141767
https://figshare.com/articles/Maximum_Parsimony_most-parsimonious_trees_of_the_nuclear_Xdh_dataset/4169544
https://figshare.com/articles/Raw_Data_-_Nedergaard_et_al_2018_-_The_feasibility_of_predicting_ground_reaction_forces_during_running_from_a_trunk_accelerometry_driven_mass-spring-damper_model_PeerJ_DOI_TBC/7110668
https://figshare.com/articles/Alignment_Campanulaceae_all_genes_dataset/4145940
https://figshare.com/articles/E_multistrigaria_70_fastq/5468137
https://figshare.com/articles/Duan_et_al_2019_Submitted_to_JGR_oceans_model_data/7593998
https://figshare.com/articles/Metadata_document_for_spatiotemporal_dataset_on_Chinese_population_distribution_and_its_driving_factors_from_1949_to_2013/3506351
https://researchdata.bath.ac.uk/446/
https://figshare.com/articles/Additional_file_2_of_Rival_seminal_fluid_induces_enhanced_sperm_motility_in_a_polyandrous_ant/6020747
https://figshare.com/articles/Additional_file_2_of_Diabetes_mellitus_is_associated_with_increased_mortality_during_tuberculosis_treatment_a_prospective_cohort_study_among_tuberculosis_patients_in_South-Eastern_Amahra_Region_Ethiopia/4425587
https://figshare.com/articles/Analysis_of_Co-Associated_Transcription_Factors_via_Ordered_Adjacency_Differences_on_Motif_Distribution/3759474
https://figshare.com/articles/Dataset_S3/5440336
https://figshare.com/articles/Additional_file_6_of_The_nucleotide_composition_of_microbial_genomes_indicates_differential_patterns_of_selection_on_core_and_accessory_genomes/4644262
https://figshare.com/articles/Additional_file_1_of_Comparison_of_clinical_outcomes_between_luminal_invasive_ductal_carcinoma_and_luminal_invasive_lobular_carcinoma/4445216
https://figshare.com/articles/Additional_file_1_of_Is_non-HDL-cholesterol_a_better_predictor_of_long-term_outcome_in_patients_after_acute_myocardial_infarction_compared_to_LDL-cholesterol_a_retrospective_study/4524227
https://figshare.com/articles/Euctenizidae_trees/3984936
https://figshare.com/articles/Confusion_in_Code_Reviews_Reasons_Impacts_and_Coping_Strategies/7230827
https://figshare.com/articles/Additional_file_3_of_Metabolite_profiling_and_transcriptomic_analyses_reveal_an_essential_role_of_UVR8-mediated_signal_transduction_pathway_in_regulating_flavonoid_biosynthesis_in_tea_plants_Camellia_sinensis_in_response_to_shading/7203893
https://figshare.com/articles/HawaiianTaro_SNP_fas/6070304
https://figshare.com/articles/Additional_file_4_of_Genome-wide_association_mapping_of_quantitative_traits_in_a_breeding_population_of_sugarcane/4391108
https://figshare.com/articles/Exclusion_sets_data_partitions_models_and_Bayesian_analysis_parameters/4065669
https://figshare.com/articles/Additional_file_4_of_Lifespan_of_restriction-modification_systems_critically_affects_avoidance_of_their_recognition_sites_in_host_genomes/4407872
https://figshare.com/articles/Santos_et_al_Reduced_Dataset/4151376
https://figshare.com/articles/4_Datasets_Brazil_Mexico_1_Supplemental_material_for_Intermunicipal_Cooperation_in_Metropolitan_Regions_in_Brazil_and_Mexico_Does_Federalism_Matter_/7461323
https://figshare.com/articles/Additional_file_7_of_Comparative_transcriptomics_and_proteomics_of_three_different_aphid_species_identifies_core_and_diverse_effector_sets/4403210
https://figshare.com/articles/Biochar_dilution_exp_plantbiomass_nematodes_and_protozoa/5440315
https://figshare.com/articles/mortality_publicReporting_lynx/6034748
https://figshare.com/articles/BC_140819_M2A_GFP_NPM_UN/4201389
https://figshare.com/articles/Fig2_Time-calibrated_phylogenetic_tree_tre/4069023
https://figshare.com/articles/Supplementary_Archive_5_-_part_III/7391216
https://www.kaggle.com/rabinandan/twitter-sentiment
https://www.kaggle.com/ywang311/twitter-sentiment
https://figshare.com/articles/Net_Profit_Flows_1980-2009_dta/4924418
https://figshare.com/articles/Theoretical_ribosomal_protein_mass_fingerprint_of_Hemiselmis_andersenii/5991226
https://researchdata.bath.ac.uk/150/
https://figshare.com/articles/MOESM4_of_Species-specific_interference_exerted_by_the_shrub_Cistus_clusii_Dunal_in_a_semi-arid_Mediterranean_gypsum_plant_community/7405589
https://figshare.com/articles/File_S2_PBW_trees_and_output/3994593
https://figshare.com/articles/STACKS_dataset_statistics_dataset_Number_2/4117194
https://figshare.com/articles/Allele_frequency_per_SNP_for_F2_hybrids/6040067
https://figshare.com/articles/Additional_file_3_of_Eye_exercises_of_acupoints_their_impact_on_myopia_and_visual_symptoms_in_Chinese_rural_children/4387913
https://figshare.com/articles/Allele_frequency_for_F2_hybrids_after_sliding_window_averaging_of_2000_SNP/6040091
https://figshare.com/articles/Additional_file_4_of_A_12-week_randomized_double-blind_placebo-controlled_multicenter_study_of_choline-stabilized_orthosilicic_acid_in_patients_with_symptomatic_knee_osteoarthritis/4523636
https://figshare.com/articles/Codes_used_for_EBSP_simulation_analyses/4085514
https://figshare.com/articles/GPS_locations_red_deer_Norway/4096737
https://researchdata.bath.ac.uk/584/
https://figshare.com/articles/Additional_file_6_of_The_DNMT1-associated_lincRNA_DACOR1_reprograms_genome-wide_DNA_methylation_in_colon_cancer/7238780
https://figshare.com/articles/Sample_collections/6208214
https://figshare.com/articles/SNP_dataset_Varscan_software_part_01/4096611
https://figshare.com/articles/Preferred_dataset_XML/4069263
https://figshare.com/articles/Experimental_data_subject_7_6_6/4153155
https://figshare.com/articles/Additional_file_5_Table_S3_of_Evaluating_allopolyploid_origins_in_strawberries_Fragaria_using_haplotypes_generated_from_target_capture_sequencing/5280436
https://figshare.com/articles/Appendix_S2/4541770
https://figshare.com/articles/20news-bydate_tar_gz/3829962
https://figshare.com/articles/VCF_Files_of_7_Datasets_used_for_Analysis/4181001
https://figshare.com/articles/MOESM1_of_Effect_of_nutrition_education_on_the_knowledge_scores_of_urban_households_with_home_gardens_in_Morogoro_Tanzania/4373309
https://figshare.com/articles/Forecasting_the_spatial_transmission_of_influenza_in_the_United_States_data_sets_/5687503
https://www.kaggle.com/zanjibar/japantradestatistics2
https://www.kaggle.com/lucasvictor/us-state-populations-2018
https://www.kaggle.com/singularity99/scientifictoolsdataset
https://www.kaggle.com/hakabuk/us-presidents-heights-how-low-can-u-go
https://www.kaggle.com/nicapotato/bad-bad-words
https://www.kaggle.com/cyaris/mta-turnstile-traffic
https://www.kaggle.com/jtrecenti/rfbcnpj
https://www.kaggle.com/chunchunhao/binance-round-8
https://www.kaggle.com/binance/binance-crypto-klines
https://www.kaggle.com/rebaiahmed/itekc-facebook-pages-posts
https://www.kaggle.com/isaactaylorofficial/imdb-10000-most-voted-feature-films-041118
https://www.kaggle.com/machinoai/datasets-hra-lstm
https://www.kaggle.com/joosthazelzet/lego-brick-images
https://www.kaggle.com/cityofLA/los-angeles-county-shapefiles
https://www.kaggle.com/heuristicsoft/insect-sound-for-clustering-testing
https://www.kaggle.com/oswinrh/bible
https://www.kaggle.com/new-york-state/nys-patents-issued-to-health-research-inc
https://www.kaggle.com/tentotheminus9/religious-and-philosophical-texts
https://www.kaggle.com/cms/cms-open-payments-dataset-2013
https://www.kaggle.com/varunsharmaml/qutub-complex-monuments-images-dataset
https://www.kaggle.com/plarmuseau/rating-ranked-books
https://www.kaggle.com/isaaclayton/20172018-shsat-admissions-test-offers
https://www.kaggle.com/amalinow/183000-reddit-comments-about-trump
https://www.kaggle.com/cityofoakland/oakland-large-night-out-parties-by-org-in-2013
https://www.kaggle.com/dataturks/clothing-item-detection-for-ecommerce
https://www.kaggle.com/yburger/web-visitor-interests
https://www.kaggle.com/pavansanagapati/urban-sound-classification
https://www.kaggle.com/cdc/childhood-blood-lead-surveillance
https://www.kaggle.com/facebook/facebook-v-results
https://www.kaggle.com/xiaohuihui/spooky_author_identification
https://www.kaggle.com/abeserra/wikia-census
https://www.kaggle.com/purvank/uber-rider-reviews-dataset
https://www.kaggle.com/brijbhushannanda1979/marketing-data-analytics
https://www.kaggle.com/uspto/patent-assignment-daily
https://www.kaggle.com/mahirkukreja/delhi-weather-data
https://www.kaggle.com/new-york-state/nys-e-zpass-usage-statistics-beginning-2008
https://www.kaggle.com/san-francisco/information-requests-regarding-protected-status
https://www.kaggle.com/tobey1/bigtruckfatalities1975to2014
https://www.kaggle.com/census/current-population-survey
https://www.kaggle.com/fivethirtyeight/fivethirtyeight-governors-forecast-2018
https://www.kaggle.com/jenswalter/receipts
https://www.kaggle.com/mrcity/golden-gate-accel-20180512
https://www.kaggle.com/qweenink/omniglot
https://www.kaggle.com/meehau/EURUSD
https://www.kaggle.com/data-refinement/dbda2ja
https://www.kaggle.com/borapajo/food-choices
https://figshare.com/articles/Additional_file_1_of_Big_data_analysis_of_human_mitochondrial_DNA_substitution_models_a_regression_approach/7231409
https://figshare.com/articles/Additional_file_1_Figure_S1_of_Comprehensive_evaluation_of_AmpliSeq_transcriptome_a_novel_targeted_whole_transcriptome_RNA_sequencing_methodology_for_global_gene_expression_analysis/4456622
https://figshare.com/articles/Adolescent_SRQ_dataset_from_Social_reward_questionnaire_adolescent_version_and_its_association_with_callous_unemotional_traits/4810993
https://figshare.com/articles/Acoustic_data/4186812
https://figshare.com/articles/substrate_temperature_degC_sand_0_shade.zip/956310
https://figshare.com/articles/Theoretical_ribosomal_protein_mass_fingerprint_of_Volvox_carteri/5995504
https://figshare.com/articles/Single_locus_analysis/4168794
https://figshare.com/articles/Raw_Respondent_Survey_Data/4177200
https://figshare.com/articles/Dietary_DNA_metabarcode_sequences_in_fasta_format/4064475
https://figshare.com/articles/Additional_file_2_Table_S1_of_ChiLin_a_comprehensive_ChIP-seq_and_DNase-seq_quality_control_and_analysis_pipeline/4442204
https://figshare.com/articles/Figure3_-_Source_Data_1/4091205
https://figshare.com/articles/Figure_4/5980489
https://figshare.com/articles/Test_set_of_clinical_meta-data/4235636
https://www.kaggle.com/gaborfodor/keras-pretrained-models
https://www.kaggle.com/baohuy/keras-pretrained-models
https://figshare.com/articles/Table_S2/4257116
https://figshare.com/articles/antdata/5356411
https://figshare.com/articles/ncsc90d6m4p3_nex/6062702
https://researchdata.bath.ac.uk/525/
https://figshare.com/articles/Data_supporting_thesis_entitled_The_Determinants_of_Retirement_Savings_Sufficiency_Evidence_from_a_South_African_Tertiary_Institution_s_Retirement_Fund/5220697
https://figshare.com/articles/Experimental_data_subject_2_1_6/4153071
https://figshare.com/articles/morphology_dataset/6032741
https://figshare.com/articles/Dataset_of_Advanced_Persistent_Threat_APT_alerts/7577750
https://www.kaggle.com/shayanfazeli/heartbeat
https://www.kaggle.com/oecd-org/oecd-total-dwellings-and-residential-buildings
https://www.kaggle.com/epa/carbon-monoxide
https://www.kaggle.com/michaelapers/pubg-1pp-squads-31147-matches
https://www.kaggle.com/new-york-state/nys-supplemental-security-income-ssi-data
https://www.kaggle.com/mcandocia/aisimulated-games-of-machi-koro
https://www.kaggle.com/coolkaggleuser/sms-spam-collection-data-set
https://www.kaggle.com/zurfer/simulation-linear-regression
https://www.kaggle.com/jaykay12/odi-cricket-matches-19712017
https://www.kaggle.com/igorafm/braziliansc-habeascorpusjan1518
https://www.kaggle.com/fivethirtyeight/cuss-words-and-deaths-in-quentin-tarantino-films
https://www.kaggle.com/zusmani/uberdrives
https://www.kaggle.com/tboyle10/medicaltranscriptions
https://www.kaggle.com/miguelmg/nbv-dataset
https://www.kaggle.com/new-york-city/nyc-community-district-breakdowns
https://www.kaggle.com/stackoverflow/pythonquestions
https://www.kaggle.com/cityofLA/los-angeles-listing-of-businesses
https://www.kaggle.com/mauryashubham/english-premier-league-players-dataset
https://www.kaggle.com/essonnel/5000-imdb-movies-multivariant-analysis
https://www.kaggle.com/lovenico/titanic-leader-rank
https://www.kaggle.com/cms/cms-part-d-prescriber-summary-reports-2013-2016
https://www.kaggle.com/new-york-city/nyc-department-of-sanitation
https://www.kaggle.com/budincsevity/szeged-weather
https://www.kaggle.com/PromptCloudHQ/starwood-hotel-inventory
https://www.kaggle.com/benhamner/clinton-trump-tweets
https://www.kaggle.com/brianbgonz/the-bachelorette-contestants
https://www.kaggle.com/nandvard/microsoft-data-science-capstone
https://www.kaggle.com/PromptCloudHQ/imdb-data
https://www.kaggle.com/new-york-state/nys-prison-admissions-beginning-2008
https://www.kaggle.com/dabaker/ukregions
https://www.kaggle.com/taniaj/world-telecommunications-data
https://www.kaggle.com/new-york-city/nyc-building-complaint-disposition-codes
https://www.kaggle.com/roustekbio/breast-cancer-csv
https://www.kaggle.com/san-francisco/sf-housing-inventory
https://www.kaggle.com/rafanovello/online-mnist
https://www.kaggle.com/vardial/dslcc
https://www.kaggle.com/new-york-state/nys-master-contract-value-added-resellers-report
https://www.kaggle.com/nlm-nih/rxnorm-drug-name-conventions
https://www.kaggle.com/numbersareuseful/public-leaderboard-mnist
https://www.kaggle.com/mswarbrickjones/reddit-selfposts
https://www.kaggle.com/rtatman/r-vs-python-the-kitchen-gadget-test
https://www.kaggle.com/jutrera/stanford-car-dataset-by-classes-folder
https://www.kaggle.com/rounakbanik/ted-talks
https://www.kaggle.com/wcukierski/enron-email-dataset
https://www.kaggle.com/datasf/sf-restaurant-inspection-scores
https://www.kaggle.com/cms/cms-clfs-applicable-information-raw-data
https://www.kaggle.com/utathya/electricity-consumption
https://www.kaggle.com/benhamner/nips-2015-papers
https://www.kaggle.com/ecriverac/ranking-presidentes
https://www.kaggle.com/quatern10n/four-shapes-csv
https://www.kaggle.com/awesomelemon/csharp-commented-methods-github
https://www.kaggle.com/jboysen/spy-plane-finder
https://www.kaggle.com/smid80/weatherww2
https://www.kaggle.com/pvkc8888/dota-2-pro-circuit-1718
https://www.kaggle.com/palashio/glioblastomamutations
https://www.kaggle.com/jboysen/asian-conflicts
https://www.kaggle.com/ashleysmith/random-aircraft-information
https://www.kaggle.com/joseguilhermelopes/bike-sharing-system-in-brasilia-brazil
https://www.kaggle.com/ehallmar/reddit-comment-score-prediction
https://www.kaggle.com/tentotheminus9/amnesty-international-halt-the-hate
https://www.kaggle.com/fivethirtyeight/fivethirtyeight
https://www.kaggle.com/sanyammehta/practice-1
https://www.kaggle.com/dansbecker/aer-credit-card-data
https://www.kaggle.com/new-york-state/new-york-state-locality-hierarchy-with-websites
https://www.kaggle.com/uciml/identifying-interesting-web-pages
https://www.kaggle.com/mchirico/montcoalert
https://figshare.com/articles/pairsDevTest_txt/3829974
https://figshare.com/articles/Additional_file_2_Table_S2_of_Relative_and_contextual_contribution_of_different_sources_to_the_composition_and_abundance_of_indoor_air_bacteria_in_residences/4380092
https://figshare.com/articles/Factors_associated_with_excessive_body_fat_in_men_and_women_living_in_urban_and_rural_communities/1488644
https://figshare.com/articles/Theoretical_ribosomal_protein_mass_fingerprint_of_Pseudomonas_fragi/6667625
https://figshare.com/articles/Additional_file_1_of_Metatranscriptomic_analysis_of_diverse_microbial_communities_reveals_core_metabolic_pathways_and_microbiome-specific_functionality/4421471
https://figshare.com/articles/RAD_datasetMUSEUM_nex_subsets/4260425
https://www.kaggle.com/uciml/breast-cancer-wisconsin-data
https://www.kaggle.com/gordonyun/cdn-uw-inspress-headlines
https://www.kaggle.com/cityofoakland/oakland-senior-centers
https://www.kaggle.com/new-york-state/nys-security-level-and-facility
https://www.kaggle.com/apollonius/usda-plant-database
https://www.kaggle.com/new-york-city/ny-tax-lien-sale-lists
https://www.kaggle.com/overratedgman/mammographic-mass-data-set
https://www.kaggle.com/mseinstein/bgg_top2000
https://www.kaggle.com/bytekiller/htfe
https://www.kaggle.com/lissetteg/ecommerce-dataset
https://www.kaggle.com/thomasd9/fantasy-premier-league-201718
https://www.kaggle.com/sergeya/oss-file-sizes
https://www.kaggle.com/zusmani/pakistansuicideattacks
https://www.kaggle.com/sohier/baltimore-911-calls
https://www.kaggle.com/pankrzysiu/keras-imdb-reviews
https://www.kaggle.com/dhafer/gridded-gdp-tunisia-from-1990-to-2015
https://www.kaggle.com/razibmustafiz/student-survey
https://www.kaggle.com/mauriciocap/crunchbase2013
https://www.kaggle.com/new-york-state/nys-manufactured-home-park-registrations
https://www.kaggle.com/ymlai87416/wiktraffictimeseriesforecast
https://www.kaggle.com/sohier/uk-traffic-counts
https://www.kaggle.com/vsathiamoo/cve-common-vulnerabilities-and-exposures
https://www.kaggle.com/ecodan/global-terrorism-db
https://www.kaggle.com/paultimothymooney/chiu-2015
https://www.kaggle.com/PromptCloudHQ/amazon-echo-dot-2-reviews-dataset
https://www.kaggle.com/renangomes/dengue-temperatura-e-chuvas-em-campinassp
https://www.kaggle.com/thibalbo/techcrunch-posts-compilation
https://www.kaggle.com/mepotts/cousin-marriage-data
https://www.kaggle.com/scoleman/spacex-launch-data
https://www.kaggle.com/cityofLA/los-angeles-city-population-2010
https://www.kaggle.com/hollyg/glcs-for-us-states
https://www.kaggle.com/new-york-city/ny-contractor-sub-contractor-change-order-report
https://www.kaggle.com/vineetkothari/coalproduction
https://www.kaggle.com/cms/cms-hpsa-low-income-zip-code-database
https://www.kaggle.com/smugglaz/rupeetalk
https://www.kaggle.com/new-york-city/nyc-housing-authority-nycha
https://www.kaggle.com/patil4444/filtering-mobile-phone-spam
https://www.kaggle.com/crawford/agricultural-survey-of-african-farm-households
https://www.kaggle.com/new-york-city/nyc-filming-permits
https://www.kaggle.com/chicago/chicago-problem-landlord-list
https://www.kaggle.com/gagandeep16/car-sales
https://www.kaggle.com/new-york-state/nys-registered-pesticide-businesses-and-agencies
https://www.kaggle.com/sangarshanan/medium-articles-tagged-in-mldlai
https://www.kaggle.com/cheedcheed/yelp-categories
https://www.kaggle.com/sohier/static-copy-of-recommendation-engine-notebook
https://www.kaggle.com/netanel246/jewish-baby-names
https://www.kaggle.com/blissoft/astra-intl-2000-2017
https://www.kaggle.com/san-francisco/mayor-office-of-housing-and-community-development
https://www.kaggle.com/dalreada/all-uk-active-company-names
https://www.kaggle.com/new-york-state/nys-combined-sewer-overflows-csos
https://www.kaggle.com/chicago/chicago-ethics-pledge
https://www.kaggle.com/danofer/india-census
https://www.kaggle.com/nih-chest-xrays/data
https://www.kaggle.com/cityofoakland/oakland-land-water-areas-by-zip-code
https://www.kaggle.com/cms/cms-nppes-deactivated-npi-report
https://www.kaggle.com/anindya2906/glove6b
https://figshare.com/articles/Additional_file_4_of_Absolute_quantitation_of_microbiota_abundance_in_environmental_samples/6616307
https://www.kaggle.com/vikasg/russian-troll-tweets
https://www.kaggle.com/kani14am/tweets1
https://www.kaggle.com/fivethirtyeight/russian-troll-tweets
https://figshare.com/articles/Summary_Results_for_High-Multiplicity_RCPSP_max/7238108
https://www.kaggle.com/kamils/countries-iso-codes
https://www.kaggle.com/juanumusic/countries-iso-codes
https://figshare.com/articles/Saved_Data_Results_from_the_Workflow_to_Analysis_Imputation_for_Microsatellite_Cell_Datasets_for_Reconstructing_Cell_Lineage_Maps/6007451
https://figshare.com/articles/Additional_file_3_ExampleData_GxE_1_01_210corr_840noise_of_Detection_of_gene-environment_interactions_in_the_presence_of_linkage_disequilibrium_and_noise_by_using_genetic_risk_scores_with_internal_weights_from_elastic_net_regression/5103445
https://figshare.com/articles/MOESM1_of_Inhibition_of_microbial_biofuel_production_in_drought-stressed_switchgrass_hydrolysate/4420442
https://figshare.com/articles/Lemmus_complete_8_9_result_BEAST/4155888
https://figshare.com/articles/raw_results_experiment_xlsx/5110051
https://figshare.com/articles/Table_S8_from_Parallel_analysis_of_Arabidopsis_circadian_clock_mutants_reveals_different_scales_of_transcriptome_and_proteome_regulation/4653466
https://researchdata.bath.ac.uk/428/
https://figshare.com/articles/Additional_file_3_of_Evaluating_a_preoperative_protocol_that_includes_magnetic_resonance_imaging_for_lymph_node_metastasis_in_the_Cholangiocarcinoma_Screening_and_Care_Program_CASCAP_in_Thailand/5426341
https://figshare.com/articles/Data_from_Pollination_in_the_Chilean_Mediterranean-Type_Ecosystem_a_review_of_current_advances_and_pending_tasks/5153968
https://figshare.com/articles/Additional_file_1_of_Model_based_on_GA_and_DNN_for_prediction_of_mRNA-Smad7_expression_regulated_by_miRNAs_in_breast_cancer/7532453
https://figshare.com/articles/Theoretical_ribosomal_protein_mass_fingerprint_of_Hafnia_alvei/6566855
https://figshare.com/articles/MOESM3_of_Cheminformatics_analysis_of_the_AR_agonist_and_antagonist_datasets_in_PubChem/4672630
https://figshare.com/articles/phyA_Brassicaceae_dataset/4130568
https://www.kaggle.com/START-UMD/gtd
https://www.kaggle.com/chats351/gtd-data
https://www.kaggle.com/serifkaya/global-terrorism-database
https://figshare.com/articles/MOESM1_of_Interpreting_vertical_movement_behavior_with_holistic_examination_of_depth_distribution_a_novel_method_reveals_cryptic_diel_activity_patterns_of_Chinook_salmon_in_the_Salish_Sea/4552594
https://figshare.com/articles/Lemmus_partial_30_result_BEAST/4155813
https://figshare.com/articles/Additional_file_6_of_Lipid_accumulation_in_human_breast_cancer_cells_injured_by_iron_depletors/6084566
https://figshare.com/articles/Cowl_Female_population_agonism/4712266
https://researchdata.bath.ac.uk/443/
https://figshare.com/articles/Additional_file_10_of_Exome_scale_map_of_genetic_alterations_promoting_metastasis_in_colorectal_cancer/7109558
https://figshare.com/articles/Appendix_S1_-_Full_occurrence_dataset/6079988
https://figshare.com/articles/Exact_p_value_dataset/4173546
https://figshare.com/articles/Green_and_Jutfelt_2014_raw_data/4064628
https://figshare.com/articles/Additional_file_5_Table_S12_of_A_machine_learning_strategy_for_predicting_localization_of_post-translational_modification_sites_in_protein-protein_interacting_regions/4347215
https://figshare.com/articles/Data_for_the_movement_ecology_part_of_Dahirel_et_al_2016_Journal_of_Zoology/5956108
https://figshare.com/articles/Additional_file_1_Table_S1_of_A_census_of_-helical_membrane_proteins_in_double-stranded_DNA_viruses_infecting_bacteria_and_archaea/4380869
https://figshare.com/articles/Genomic_datasets/6449570
https://figshare.com/articles/Microbial_OTUs_in_L_vulgaris_nectar/4102665
https://figshare.com/articles/Risk_and_Loss_aversion_in_pathologically_anxious_and_matched_control_individuals/4772323
https://figshare.com/articles/Dataset_7_11_Spleen_matrix_isoforms_TPM_not_cross_norm/6058004
https://figshare.com/articles/Theoretical_ribosomal_protein_mass_fingerprint_of_Fusarium_graminearum/6007751
https://figshare.com/articles/Dataset_from_the_paper_Perceptions_of_climate_change_across_the_Canadian_forest_sector_the_key_factors_of_institutional_and_geographical_environment_PLOS_ONE_/6260444
https://figshare.com/articles/Additional_file_2_of_Cross-genetic_determination_of_maternal_and_neonatal_immune_mediators_during_pregnancy/6999458
https://figshare.com/articles/Additional_file_8_Figure_S7_of_Large-scale_benchmarking_reveals_false_discoveries_and_count_transformation_sensitivity_in_16S_rRNA_gene_amplicon_data_analysis_methods_used_in_microbiome_studies/4367282
https://www.kaggle.com/samdeeplearning/real-estate-vermont-newhampshire
https://www.kaggle.com/javico101/datamiami
https://figshare.com/articles/Additional_file_4_of_Estimation_of_delay_to_diagnosis_and_incidence_in_HIV_using_indirect_evidence_of_infection_dates/6695351
https://figshare.com/articles/PCG-AA_dataset/4067214
https://www.kaggle.com/usforestservice/usfs-fia
https://www.kaggle.com/getthedata/open-flood-risk-by-postcode
https://www.kaggle.com/srgrace/accounting-journals
https://www.kaggle.com/fantop/wikiquote-short-english-quotes
https://www.kaggle.com/dilavado/labeled-surgical-tools
https://www.kaggle.com/openaddresses/openaddresses-asia-and-oceania
https://www.kaggle.com/priyanshu7/chicago-crime-portal-dataupdated
https://www.kaggle.com/danofer/sf-parks
https://www.kaggle.com/cityofoakland/oakland-crime-911-calls-gun-incidents
https://www.kaggle.com/jiashenliu/515k-hotel-reviews-data-in-europe
https://www.kaggle.com/lesoler/training
https://www.kaggle.com/rtatman/english-word-frequency
https://www.kaggle.com/gangadhar/nuclei-detectron-models-for-2018-data-science-bowl
https://www.kaggle.com/city-of-seattle/seattle-fas-facilities
https://www.kaggle.com/lava18/google-play-store-apps
https://www.kaggle.com/dataquantum/death2014
https://www.kaggle.com/robertojacome/vehicles-in-ecuador-2016
https://www.kaggle.com/nathanlauga/all-words
https://www.kaggle.com/nasa/astronaut-yearbook
https://www.kaggle.com/ilknuricke/neurohackinginrimages
https://www.kaggle.com/esparko/mmda-traffic-incident-data
https://www.kaggle.com/chicago/chicago-population-by-2010-census-block
https://www.kaggle.com/rexhaif/ru-elections-2018
https://www.kaggle.com/alaowerre/nigeria-nmis-health-facility-data
https://www.kaggle.com/hikarilu/socail-network-in-schools
https://www.kaggle.com/dhainjeamita/cpu-data-cleaned
https://www.kaggle.com/wnyc/candidate-endorsements
https://www.kaggle.com/numberswithkartik/red-white-wine-dataset
https://www.kaggle.com/caffreit/malahide-parkrun
https://pub.uni-bielefeld.de/record/2907475
https://www.kaggle.com/socialmedianews/how-news-appears-on-social-media
https://www.kaggle.com/chiranjivdas09/ta-feng-grocery-dataset
https://www.kaggle.com/zusmani/kung-fu-panda
https://www.kaggle.com/jerrinv/nfl-offense-cleaned-2017to2007
https://www.kaggle.com/machinoai/churn-datasets
https://www.kaggle.com/cityofoakland/oakland-stop-data-4-2013-to-9-2015
https://www.kaggle.com/zain95/likely-diseases-in-certain-genders-and-ages
https://www.kaggle.com/mlagunas/mnist-pytorch
https://www.kaggle.com/san-francisco/sf-privately-owned-public-open-spaces
https://www.kaggle.com/sijovm/atpdata
https://www.kaggle.com/jonomendelson/coffee-drinking
https://www.kaggle.com/abhilashanil/better-life-index-and-gross-domestic-product
https://www.kaggle.com/chrisfilo/mriqc
https://www.kaggle.com/paultimothymooney/poetry
https://www.kaggle.com/taniaj/tanzania-humdata-admin-geo
https://www.kaggle.com/rajmund/liquid-foam
https://www.kaggle.com/nelsonchu/air-quality-in-northern-taiwan
https://www.kaggle.com/rajanand/press-release
https://www.kaggle.com/new-york-state/nys-air-passenger-traffic
https://www.kaggle.com/bryanpark/russian-single-speaker-speech-dataset
https://www.kaggle.com/gowtham121/annauniversityresultsmay-june16
https://www.kaggle.com/nltkdata/machado
https://www.kaggle.com/nasa/landslide-events
https://www.kaggle.com/harunshimanto/movielens
https://www.kaggle.com/shreyas0906/selfies-with-sunglasses
https://www.kaggle.com/leonmartin/space
https://www.kaggle.com/gjbroughton/start-trek-scripts
https://www.kaggle.com/mbkinaci/fruit-images-for-object-detection
https://www.kaggle.com/jobspikr/30000-latest-healthcare-jobs-emedcareers-europe
https://www.kaggle.com/chicago/chicago-park-district-event-permits
https://www.kaggle.com/maxhorowitz/nflplaybyplay2015
https://www.kaggle.com/randronov/acs-2016-5yr-tract-48gdb
https://www.kaggle.com/motorcity/soybean-price-factor-data-19622018
https://www.kaggle.com/rkibria/singersgender
https://www.kaggle.com/rtatman/world-atlas-of-language-structures
https://www.kaggle.com/mehdimka/ble-rssi-dataset
https://www.kaggle.com/rtatman/paranormal-romance-novel-titles
https://www.kaggle.com/zackcode/recruiting-competition-practice
https://www.kaggle.com/crawford/cargo-2000-dataset
https://www.kaggle.com/yukapacos/shiseido-products
https://www.kaggle.com/new-york-state/nys-children-in-foster-care-annually
https://www.kaggle.com/paul92s/bitcoin-tweets-14m
https://www.kaggle.com/jeanmidev/smart-meters-in-london
https://www.kaggle.com/tastelesswine/india-crime-list-2014-and-2015
https://www.kaggle.com/chicago/chicago-cdph-asbestos-and-demolition-notification
https://www.kaggle.com/yunlevin/levin-vehicle-telematics
https://www.kaggle.com/suchi96/exchange-rate
https://www.kaggle.com/new-york-city/new-york-city-film-permits
https://www.kaggle.com/deepak730/finding-malicious-url-through-url-features
https://www.kaggle.com/mylesoneill/pokemon-sun-and-moon-gen-7-stats
https://www.kaggle.com/davidprakash/h2o-titanic
https://www.kaggle.com/daverosenman/ufc-ppv-sales
https://www.kaggle.com/saipranava/top-ranked-enlglish-movies-of-this-decade
https://www.kaggle.com/abhinavralhan/titanic
https://www.kaggle.com/datafiniti/palm-springs-vacation-rentals
https://figshare.com/articles/Theoretical_ribosomal_protein_mass_fingerprint_of_Vibrio_vulnificus/6726407
https://figshare.com/articles/Mapping_file_of_InChIStrings_InChIKeys_and_DTXSIDs_for_the_EPA_CompTox_Dashboard/3578313
https://figshare.com/articles/global_oce_llc90_tar_gz/7571792
https://figshare.com/articles/Gene_tree_set_8/4112187
https://figshare.com/articles/Dataset1_FcC_supermatrix_507_nuc/6933185
https://figshare.com/articles/Potential_double_mutualisms/7355246
https://figshare.com/articles/MOESM7_of_Uncoordinated_expression_of_DNA_methylation-related_enzymes_in_human_cancer/5696908
https://figshare.com/articles/TypeI_ErrorTest_DamUnbalanced/4101153
https://figshare.com/articles/_TheDataDebates_Tweet_Timestamps_Source_User_Language/3976731
https://figshare.com/articles/MOESM5_of_Comparative_transcriptome_analyses_of_oleaginous_Botryococcus_braunii_race_A_reveal_significant_differences_in_gene_expression_upon_cobalt_enrichment/7483724
https://figshare.com/articles/PLI_Phase_1_structures/7155191
https://figshare.com/articles/GuacaMol_Validation_SMILES/7322243
https://figshare.com/articles/Additional_file_4_Table_S3_of_Classification_of_low_quality_cells_from_single-cell_RNA-seq_data/4441886
https://figshare.com/articles/Lemmus_complete_30_result_BEAST/4155921
https://figshare.com/articles/LP661-13_TRES_Spectra/5572714
https://figshare.com/articles/Experiment4_cxcr4_control_zip/3521726
https://figshare.com/articles/Additional_file_2_of_CTCF_maintains_regulatory_homeostasis_of_cancer_pathways/6944792
https://figshare.com/articles/Global_Marine_Environment_Dataset_GMED_/7362038
https://figshare.com/articles/Global_Marine_Environment_Dataset_GMED_/5937268
https://zenodo.org/record/1491933
https://www.kaggle.com/ytoren/protocol-gifts
https://www.kaggle.com/ali2020armor/taekwondo-techniques-classification
https://www.kaggle.com/alucaria/medline
https://www.kaggle.com/theworldbank/ida-statement-of-credits-and-grants-data
https://www.kaggle.com/meldaozdin/regular-and-dwarf-planets-in-solar-system
https://www.kaggle.com/paolop/human-instructions-multilingual-wikihow
https://www.kaggle.com/guidiego/mortality-projection-who
https://www.kaggle.com/ericbenhamou/victor-hugo-texts
https://www.kaggle.com/jboysen/london-crime
https://www.kaggle.com/eliasdabbas/5000-justdoit-tweets-dataset
https://www.kaggle.com/charleshen/featureselection
https://www.kaggle.com/ai-first/cocktail-ingredients
https://www.kaggle.com/rtatman/do-tweets-from-conferences-get-more-traffic
https://www.kaggle.com/ionaskel/nba-games-stats-from-2014-to-2018
https://www.kaggle.com/lucianakeiko/microdados-censo-escolar-2015
https://www.kaggle.com/neelshah18/scopusjournal
https://www.kaggle.com/jacklizhi/creditcard
https://www.kaggle.com/sabermalek/plf50
https://www.kaggle.com/zavadskyy/lots-of-code
https://www.kaggle.com/bigquery/ethereum-blockchain
https://www.kaggle.com/dcohen21/8anu-climbing-logbook
https://www.kaggle.com/new-york-state/nys-new-york-state-career-centers
https://www.kaggle.com/vnxiclaire/bobabayarea
https://www.kaggle.com/open-powerlifting/powerlifting-database
https://www.kaggle.com/gnkadimeng/south-african-reserve-bank-annual-report-2016
https://www.kaggle.com/kaggle/hillary-clinton-emails
https://www.kaggle.com/noaa/hurricane-database
https://www.kaggle.com/caatdata/uk-arms-export-licences
https://figshare.com/articles/3D_metric_data_of_nasal_measurements_taken_from_digitalised_plaster_models_for_infants_with_cleft_lip_and_palate_created_by_computer-aided_design_and_manufacture_with_and_without_the_RapidNAM_refinement/7011638
https://figshare.com/articles/Techno-economic_feasibility_assessment_of_CO2_capture_from_coal-fired_power_plants_using_molecularly_imprinted_polymer_-_Dataset/5693134
https://figshare.com/articles/Additional_file_3_of_Anthocyanin_accumulation_correlates_with_hormones_in_the_fruit_skin_of_Red_Delicious_and_its_four_generation_bud_sport_mutants/7483943
https://figshare.com/articles/Theoretical_ribosomal_protein_mass_fingerprint_of_Stenotrophomonas_maltophilia/6721508
https://www.kaggle.com/snap/amazon-fine-food-reviews
https://www.kaggle.com/ajaysh/amazon-fine-food-reviews
https://figshare.com/articles/Additional_file_15_Table_S7_of_Evaluation_of_off-target_and_on-target_scoring_algorithms_and_integration_into_the_guide_RNA_selection_tool_CRISPOR/4466075
https://figshare.com/articles/MOESM1_of_DNA_methylation_profiling_of_acute_chorioamnionitis-associated_placentas_and_fetal_membranes_insights_into_epigenetic_variation_in_spontaneous_preterm_births/7269905
https://figshare.com/articles/3daymaps_files_zip/4902080
https://figshare.com/articles/Emotions_trust_and_motivation_in_ICT_mediated_work/5849694
https://www.kaggle.com/okfn/world-cities
https://figshare.com/articles/Meta-Data_of_Papers_in_India_Software_Engineering_Conference_from_2008_to_2016/3843738
https://figshare.com/articles/R_object_containing_taxonomic_information_for_each_OTU/6059696
https://figshare.com/articles/Additional_file_7_of_Machine_Learning_for_detection_of_viral_sequences_in_human_metagenomic_datasets/7126139
https://figshare.com/articles/MOESM1_of_Growth_curve_registration_for_evaluating_salinity_tolerance_in_barley/4780111
https://figshare.com/articles/Dataset_for_the_SIDER_R_package/4737481
https://researchdata.bath.ac.uk/541/
https://figshare.com/articles/Additional_file_2_of_Species_comparison_of_liver_proteomes_reveals_links_to_naked_mole-rat_longevity_and_human_aging/6891671
https://figshare.com/articles/Combined_four-marker_DNA_dataset_of_Malvoideae/6068861
https://www.kaggle.com/new-york-state/nys-fire-department-directory-for-new-york-state
https://www.kaggle.com/PromptCloudHQ/toy-products-on-amazon
https://www.kaggle.com/snehal1409/movielens
https://www.kaggle.com/new-york-state/nys-ny-license-center-business-wizard
https://www.kaggle.com/new-york-state/nys-law-enforcement-personnel-by-agency
https://www.kaggle.com/jguerreiro/running
https://www.kaggle.com/koki25ando/hostel-world-dataset
https://www.kaggle.com/dixienewsome/cycling
https://www.kaggle.com/ninjascant/human-proteins-interactions
https://www.kaggle.com/new-york-state/nys-current-employment-statistics-beginning-1990
https://www.kaggle.com/alaeddineayadi/obfuscated-multiclassification
https://www.kaggle.com/fivethirtyeight/fivethirtyeight-house-forecast-2018
https://www.kaggle.com/sohier/allenunger-global-commodity-prices
https://www.kaggle.com/dosonl/comments-from-funding-platform
https://www.kaggle.com/new-york-state/nys-nys-liquor-authority-new-applications-received
https://www.kaggle.com/chicago/chicago-beach-swim
https://www.kaggle.com/openfoodfacts/openbeautyfacts
https://www.kaggle.com/kangnade/bundesliga-20132017-all-team-stats
https://www.kaggle.com/atmarouane/nyc-taxi-trip-noisy-bis2
https://www.kaggle.com/theworldbank/world-gender-statistics
https://www.kaggle.com/cms/medicare-skilled-nursing-facility-provider-reports
https://www.kaggle.com/cityofLA/los-angeles-bureau-of-street-lighting-data
https://www.kaggle.com/carambadonkey/myrepublicid-twitter-data
https://www.kaggle.com/danofer/foursquare-nyc-rest
https://www.kaggle.com/doyouevendata/pakistan-geospatial-regions
https://www.kaggle.com/kmader/swiss-rail-plan
https://www.kaggle.com/jamestollefson/alaskaairfields
https://www.kaggle.com/anokas/2015-us-traffic-fatalities
https://www.kaggle.com/census/census-bureau-international
https://www.kaggle.com/rkmunusamy/food-preference
https://www.kaggle.com/cdc/nchs-births-and-birth-rates-data
https://www.kaggle.com/sdorius/countryses
https://www.kaggle.com/imamdigmi/shapes-squares-and-triangles
https://www.kaggle.com/rockbottom73/leads-dataset
https://www.kaggle.com/shankarpandala/mann-ki-baat-speech-corpus
https://www.kaggle.com/cityofoakland/oakland-public-library-branch-locations-hours
https://www.kaggle.com/szamil/who-suicide-statistics
https://www.kaggle.com/new-york-state/nys-draft-title-v-facility-permits
https://www.kaggle.com/kmader/colorectal-histology-mnist
https://www.kaggle.com/rmyersapco/sopie
https://www.kaggle.com/rpaguirre/tesla-stock-price
https://www.kaggle.com/nikshev/hyip-dataset
https://www.kaggle.com/rtatman/unimorph
https://www.kaggle.com/theworldbank/msme-country-indicators-and-sources
https://www.kaggle.com/rafaelgimenes/candidatos2018merged
https://figshare.com/articles/Additional_file_1_of_Quality_of_care_for_children_with_acute_malnutrition_at_health_center_level_in_Uganda_a_cross_sectional_study_in_West_Nile_region_during_the_refugee_crisis/6831350
https://figshare.com/articles/Pacific_and_Atlantic_Marine_Bivalve_Range_and_Sizes/6041051
https://figshare.com/articles/CPS-17-186_Constitutionalization_Replication_Dataset_20180313_Supplemental_material_for_The_Constitutionalization_of_Indigenous_Group_Rights_Traditional_Political_Institutions_and_Customary_Law/6301082
https://figshare.com/articles/Interactive_Locomotion/4309475
https://figshare.com/articles/mass_data_for_PCMs_BensonEtal14_10-27-14/4077195
https://figshare.com/articles/Linares_Dataset/7396085
https://figshare.com/articles/Linhares_Dataset/7396037
https://figshare.com/articles/Worldwide_Inversion_frequencies_of_Drosophila_melanogaster/7075721
https://figshare.com/articles/Eyeblink_Artifact_Wet_EEG_Datasets/5537275
https://figshare.com/articles/Additional_file_1_of_Poor_awareness_of_syphilis_prevention_and_treatment_knowledge_among_six_different_populations_in_south_China/4419221
https://figshare.com/articles/Datasets/4093314
https://www.kaggle.com/miniushkin/missing-people-in-russia
https://www.kaggle.com/vanyapig/missing-people-in-russia
https://figshare.com/articles/air_temperature_degC_1cm_rock_90_shade.zip/956324
https://figshare.com/articles/Oligonucleotide_annotations_from_the_Agilent_Songbird_Oligonucleotide_Array_V2_data_file_10/6189440
https://figshare.com/articles/HiWATER_The_Multi-Scale_Observation_Experiment_on_Evapotranspiration_over_heterogeneous_land_surfaces_MUSOEXE_Dataset_-_flux_observation_matrix_large_aperture_scintillometer_at_site_No_2_/4714795
https://figshare.com/articles/CCETs_xz/6801263
https://figshare.com/articles/E_rare_crassinervium_106_fastq/5468245
https://researchdata.bath.ac.uk/361/
https://figshare.com/articles/Tree_Canopy_Change_2009-2014_Prince_George_s_County_MD/5258545
https://figshare.com/articles/Additional_file_7_of_Anthocyanin_accumulation_correlates_with_hormones_in_the_fruit_skin_of_Red_Delicious_and_its_four_generation_bud_sport_mutants/7483970
https://figshare.com/articles/Additional_file_3_of_Symbionts_in_waiting_the_dynamics_of_incipient_endosymbiont_complementation_and_replacement_in_minimal_bacterial_communities_of_psyllids/5085913
https://figshare.com/articles/S1_fungus_uclust_R_script_rarefied/4295069
https://figshare.com/articles/Additional_file_4_of_Why_are_some_species_older_than_others_A_large-scale_study_of_vertebrates/4319015
https://figshare.com/articles/Additional_file_10_of_Comparative_transcriptomics_and_proteomics_of_three_different_aphid_species_identifies_core_and_diverse_effector_sets/4403297
https://figshare.com/articles/Villanueva-Ca_as_etal_RNA-Seq_samples/4239431
https://www.kaggle.com/prateikmahendra/loan-data
https://www.kaggle.com/zhijinzhai/loandata
https://figshare.com/articles/Sensitiveness_analysis_Sample_sizes_for_t-tests_for_paired_samples/3753396
https://researchdata.bath.ac.uk/77/
https://figshare.com/articles/Going_With_Your_Gut_-_Data_Files/5970901
https://figshare.com/articles/All_calisNuc_7Part/4080429
https://figshare.com/articles/Additional_file_9_of_Cox1_barcoding_versus_multilocus_species_delimitation_validation_of_two_mite_species_with_contrasting_effective_population_sizes/7551587
https://figshare.com/articles/Theoretical_ribosomal_protein_mass_fingerprint_of_Chlamydomonas_reinhardtii/5995507
https://figshare.com/articles/Voucher_table/7421051
https://figshare.com/articles/Dataset_7_2_Liver_matrix_isoforms_TMM_EXPR/6057977
https://figshare.com/articles/Additional_file_9_Figure_S8_of_Large-scale_benchmarking_reveals_false_discoveries_and_count_transformation_sensitivity_in_16S_rRNA_gene_amplicon_data_analysis_methods_used_in_microbiome_studies/4367117
https://figshare.com/articles/Interactions:_An_Uncontrolled_Proliferation_of_Hype_(data)/103169
https://figshare.com/articles/Analysis_dataset_for_the_paper_Large-scale_analysis_of_genome_and_transcriptome_alterations_in_multiple_tumors_unveils_novel_cancer-relevant_splicing_networks_/3466025
https://figshare.com/articles/Additional_file_2_of_Lifestyle_choices_and_mental_health_a_longitudinal_survey_with_German_and_Chinese_students/6280031
https://figshare.com/articles/E_auruda_45_fastq/5467756
https://figshare.com/articles/QomBabiesMorbidity_share_csv/6739235
https://figshare.com/articles/Additional_file_6_of_Comparative_performance_of_transcriptome_assembly_methods_for_non-model_organisms/4399703
https://figshare.com/articles/GDP_PPP_30arcsec/6037295
https://www.kaggle.com/christophercorrea/dc-residential-properties
https://www.kaggle.com/jahn105/mktdata
https://www.kaggle.com/anderas/car-consume
https://www.kaggle.com/fbruckschen/regions-philippines
https://www.kaggle.com/weever/2013-kenya-football-clubs-dataset
https://www.kaggle.com/wosaku/crime-in-vancouver
https://www.kaggle.com/nltkdata/rte-corpus
https://www.kaggle.com/edgedislocation/superalloys
https://www.kaggle.com/nltkdata/product-reviews
https://www.kaggle.com/irinaachkasova/salanatask
https://www.kaggle.com/binksbiz/mrtrump
https://www.kaggle.com/kmader/electron-microscopy-3d-segmentation
https://www.kaggle.com/alpkoc/historical-earthquake-dataset-of-turkey
https://www.kaggle.com/zveroloff/resag-tweets
https://www.kaggle.com/lemonkoala/terra-mystica
https://www.kaggle.com/swwintels/goldglovewinners
https://www.kaggle.com/colinmorris/reddit-usernames
https://www.kaggle.com/new-york-state/nys-facilities-licensed-by-the-dmv
https://www.kaggle.com/elikplim/car-evaluation-data-set
https://www.kaggle.com/GoogleNewsLab/health-care-searches-by-metro-area-in-the-us
https://www.kaggle.com/jessicali9530/stanford-cars-dataset
https://www.kaggle.com/zhangjuefei/death-metal
https://www.kaggle.com/fkosmowski/crop-residue-cover-measurement
https://www.kaggle.com/nitishaadhikari/hrdata
https://www.kaggle.com/new-york-city/ny-department-of-cultural-affairs
https://www.kaggle.com/dmollaaliod/correct-ocr-errors
https://www.kaggle.com/mikuns/african-fabric
https://www.kaggle.com/epa/cas-registry-numbers
https://www.kaggle.com/keplersmachines/kepler-labelled-time-series-data
https://www.kaggle.com/dataturks/best-buy-ecommerce-ner-dataset
https://www.kaggle.com/justinboon/municipalities-of-the-netherlands
https://www.kaggle.com/bobconbob/4chan4trump
https://www.kaggle.com/olgabelitskaya/osm-russia-central-district
https://www.kaggle.com/cityofLA/la-department-of-water-power-performance-metrics
https://www.kaggle.com/rio2016/olympic-games
https://www.kaggle.com/shaharz/classifying-tweets-of-trump-and-obama
https://www.kaggle.com/leninlalk/amazonproductinfo
https://www.kaggle.com/zoerenwick/titanic-survival-decision-tree
https://www.kaggle.com/alnemari/eegdataset
https://www.kaggle.com/mariopasquato/star-cluster-simulations
https://www.kaggle.com/ghopkins/nba-injuries-2010-2018
https://www.kaggle.com/rspadim/brazil-elections-2018
https://www.kaggle.com/mchirico/pennsylvania-safe-schools-report
https://www.kaggle.com/rexhaif/rus-eng-bible
https://www.kaggle.com/sti18214046/tugas-5-dasken-2017
https://www.kaggle.com/lambdamore/precipitation-machine
https://www.kaggle.com/palatos/shaco-shape-counting
https://www.kaggle.com/jbuchner/synthetic-speech-commands-dataset
https://www.kaggle.com/rtatman/stock-market-twitter-summary-stats
https://www.kaggle.com/inIT-OWL/genesis-demonstrator-data-for-machine-learning
https://www.kaggle.com/alukosayoenoch/datascientist
https://www.kaggle.com/pytorch/resnet18
https://www.kaggle.com/paultimothymooney/breast-histopathology-images
https://www.kaggle.com/valkling/tappy-keystroke-data-with-parkinsons-patients
https://www.kaggle.com/miningjerry/mnist-for-tf
https://www.kaggle.com/vicolab/somaset
https://www.kaggle.com/humancomp/worker-activity-crowdflower
https://www.kaggle.com/shrutimehta/nasa-asteroids-classification
https://www.kaggle.com/silicon99/dft-accident-data
https://www.kaggle.com/theriley106/panic-at-the-dataset
https://www.kaggle.com/theworldbank/ibrd-balance-sheet-fy2012
https://figshare.com/articles/BC_150527_K299_ZERO_ALK_UN/4201392
https://figshare.com/articles/Appendix_4_-_BEAST_files_for_the_dating_analyses/6058700
https://www.kaggle.com/acostasg/crypto-currencies
https://www.kaggle.com/acostasg/crypto-currencies-data
https://figshare.com/articles/input_dataset_for_ITS_MCM7_combined_ML_analysis/4193943
https://figshare.com/articles/dataset_csv/7151906
https://www.kaggle.com/yuanjieli/chicago-crime
https://www.kaggle.com/chicago/chicago-crime
https://figshare.com/articles/R_script_-_PolyPatEx_usage_example_/4145979
https://researchdata.bath.ac.uk/323/
https://figshare.com/articles/Dataset_description_file_/5554450
https://figshare.com/articles/Data_Model_1-2/6032921
https://figshare.com/articles/Harrison_et_al_Winners_Losers_Supplementary_Dataset/6164027
https://figshare.com/articles/Additional_file_4_of_A_model_for_predicting_utilization_of_mHealth_interventions_in_low-resource_settings_case_of_maternal_and_newborn_care_in_Kenya/6831440
https://figshare.com/articles/s_CorrPlot_An_Interactive_Scatterplot_for_Exploring_Correlation/1378808
https://www.kaggle.com/danghle/melbourne-housing-snapshot
https://www.kaggle.com/ganjedi/melbourne-housing-snapshot
https://www.kaggle.com/dansbecker/melbourne-housing-snapshot
https://figshare.com/articles/Additional_file_4_Table_S1_of_High-sensitivity_HLA_typing_by_Saturated_Tiling_Capture_Sequencing_STC-Seq_/5788464
https://figshare.com/articles/Genome-wide_identification_and_characterization_of_long_noncoding_RNAs_and_circular_RNAs_in_mouse_germline_stem_cells/7434089
https://www.kaggle.com/andreicosma/sales-of-shampoo
https://www.kaggle.com/pafrantz/sales-of-shampoo
https://figshare.com/articles/GARLI_cytb_haplotype_ML_analysis_input_file/3994068
https://figshare.com/articles/Maximum_Parsimony_strict_consensus_tree_of_the_nuclear_Xdh_dataset/4169496
https://figshare.com/articles/rps16_50tx_1073ch_BS_output/7502648
https://figshare.com/articles/Waterstriders_dataset/5292562
https://figshare.com/articles/Cybertype_Zasphinctus_obamai_CASENT0764127_paratype_worker_2/5339755
https://figshare.com/articles/Additional_file_3_of_MicroRNA_Expression_in_Formalin-fixed_Paraffin-embedded_Cancer_Tissue_Identifying_Reference_MicroRNAs_and_Variability/4424648
https://figshare.com/articles/Online_data_for_Creative_Foraging_paper/5162149
https://figshare.com/articles/MOESM4_of_Genome-wide_identification_and_evaluation_of_constitutive_promoters_in_streptomycetes/4415384
https://figshare.com/articles/Additional_file_7_of_Image_analysis_driven_single-cell_analytics_for_systems_microbiology/4817335
https://figshare.com/articles/Additional_file_1_of_Molecular_identification_of_different_trypanosome_species_and_subspecies_in_tsetse_flies_of_northern_Nigeria/4473926
https://figshare.com/articles/Sensitiveness_analysis_Sample_sizes_for_t-tests_for_the_one_sample_case/3753393
https://figshare.com/articles/Spatial_selection_on_dispersal_causes_rapid_sex-specific_divergence_in_body_mass_and_metabolic_rate_Arnold_et_al_/5248927
https://figshare.com/articles/Dataset_for_CVD_body_image_paper_sav/5244553
https://www.kaggle.com/harry688tan96/pythonscripts
https://figshare.com/articles/python_scripts/4195557
https://figshare.com/articles/Additional_file_6_of_Transcriptome-enabled_marker_discovery_and_mapping_of_plastochron-related_genes_in_Petunia_spp_/4349192
https://figshare.com/articles/Myogenic_Artifact_Dry_EEG_Datasets/5537338
https://figshare.com/articles/Limbodessus_cox1_BDJ_Paper/4146084
https://figshare.com/articles/relative_humidity_pct_1cm_rock_90_shade.zip/956491
https://figshare.com/articles/ndhF_Brassicaceae_dataset/4130574
https://figshare.com/articles/Theoretical_ribosomal_protein_mass_fingerprint_of_Clostridium_perfringens/6558908
https://figshare.com/articles/Additional_file_17_of_The_Local_Edge_Machine_inference_of_dynamic_models_of_gene_regulation/4365521
https://figshare.com/articles/North_Lake_Road_garlic_mustard_transect_data/4200558
https://figshare.com/articles/MOESM1_of_Real-time_urinary_electrolyte_monitoring_after_furosemide_administration_in_surgical_ICU_patients_with_normal_renal_function/4379972
https://figshare.com/articles/Dataset_from_Shyer_and_larger_bird_species_show_more_reduced_fear_of_humans_when_living_in_urban_environments/6061724
https://figshare.com/articles/Additional_file_6_of_dupRadar_a_Bioconductor_package_for_the_assessment_of_PCR_artifacts_in_RNA-Seq_data/4465796
https://figshare.com/articles/T-Rex_A_Large_Scale_Alignment_of_Natural_Language_with_Knowledge_Base_Triples_Full_Dump_NIF_/5151190
https://figshare.com/articles/Additional_file_5_of_The_DNMT1-associated_lincRNA_DACOR1_reprograms_genome-wide_DNA_methylation_in_colon_cancer/7238762
https://figshare.com/articles/Additional_file_4_of_Data_integration_by_multi-tuning_parameter_elastic_net_regression/7194194
https://www.kaggle.com/google-nlu/text-normalization
https://www.kaggle.com/florinlanger/cal-facilities
https://www.kaggle.com/krismurphy01/data-lab
https://www.kaggle.com/dipam7/student-grade-prediction
https://www.kaggle.com/holzner/tensorflow-speech-recognition-vae-latent-variables
https://www.kaggle.com/grooms777/mufc-points-last-two-seasons
https://www.kaggle.com/criticalhits/canadian-disaster-database
https://www.kaggle.com/mitesh58/bollywood-movie-dataset
https://www.kaggle.com/mahdijavid/datacamptraining
https://www.kaggle.com/new-york-state/nys-farmers-markets-in-new-york-state
https://www.kaggle.com/antfarol/car-sale-advertisements
https://www.kaggle.com/kmader/modeldepotio-pspnet-pretrained
https://www.kaggle.com/cms/cms-ffs-data-for-shared-savings-program-2014-16
https://www.kaggle.com/olgabelitskaya/image-examples-for-mixed-styles
https://www.kaggle.com/llihan/australia-nsw-traffic-penalty-data-20112017
https://www.kaggle.com/kaggle/meta-kaggle
https://www.kaggle.com/europeanspaceagency/mars-express-power-hackathon
https://www.kaggle.com/cityofoakland/oakland-crime-statistics-2011-to-2016
https://www.kaggle.com/amauricio/website-elements-dataset
https://www.kaggle.com/bittlingmayer/spelling
https://www.kaggle.com/kveykva/sf-bay-area-pokemon-go-spawns
https://www.kaggle.com/ammar111/reddit-top-1000
https://www.kaggle.com/nuraimiazimah/twitter-worlds2018
https://www.kaggle.com/bigquery/bitcoin-blockchain
https://www.kaggle.com/kennethbollen/majestic-wine-data
https://www.kaggle.com/petein/facialrecognition
https://www.kaggle.com/gnarkill2000/osrmnyctaxidata
https://www.kaggle.com/sirpunch/meetups-data-from-meetupcom
https://www.kaggle.com/crawford/laser-incident-report
https://www.kaggle.com/census/real-median-income-data-collection
https://www.kaggle.com/theworldbank/global-financial-inclusion-global-findex-data
https://www.kaggle.com/Eruditepanda/fortune-1000-2018
https://www.kaggle.com/new-york-state/nys-currently-accredited-law-enforcement-agencies
https://www.kaggle.com/reason-foundation/cook-county-asset-forfeiture-chicago-il
https://www.kaggle.com/residentmario/nyc-open-data-metadata
https://www.kaggle.com/alihussain1993/lower-back-pain-symptoms-datasetlabelled
https://www.kaggle.com/deeley/lahman-mlb