-
Notifications
You must be signed in to change notification settings - Fork 437
/
datasets.csv
We can't make this file beautiful and searchable because it's too large.
2338 lines (2338 loc) · 514 KB
/
datasets.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
"Package","Item","Title","Rows","Cols","n_binary","n_character","n_factor","n_logical","n_numeric","CSV","Doc"
"AER","Affairs","Fair's Extramarital Affairs Data",601,9,2,0,2,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/Affairs.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/Affairs.html"
"AER","ArgentinaCPI","Consumer Price Index in Argentina",80,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/ArgentinaCPI.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/ArgentinaCPI.html"
"AER","BankWages","Bank Wages",474,4,2,0,3,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/BankWages.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/BankWages.html"
"AER","BenderlyZwick","Benderly and Zwick Data: Inflation, Growth and Stock Returns",31,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/BenderlyZwick.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/BenderlyZwick.html"
"AER","BondYield","Bond Yield Data",60,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/BondYield.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/BondYield.html"
"AER","CartelStability","CartelStability",328,5,2,0,3,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/CartelStability.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/CartelStability.html"
"AER","CASchools","California Test Score Data",420,14,1,2,2,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/CASchools.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/CASchools.html"
"AER","ChinaIncome","Chinese Real National Income Data",37,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/ChinaIncome.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/ChinaIncome.html"
"AER","CigarettesB","Cigarette Consumption Data",46,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/CigarettesB.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/CigarettesB.html"
"AER","CigarettesSW","Cigarette Consumption Panel Data",96,9,2,0,2,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/CigarettesSW.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/CigarettesSW.html"
"AER","CollegeDistance","College Distance Data",4739,14,7,0,8,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/CollegeDistance.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/CollegeDistance.html"
"AER","ConsumerGood","Properties of a Fast-Moving Consumer Good",108,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/ConsumerGood.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/ConsumerGood.html"
"AER","CPS1985","Determinants of Wages Data (CPS 1985)",534,11,4,0,7,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/CPS1985.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/CPS1985.html"
"AER","CPS1988","Determinants of Wages Data (CPS 1988)",28155,7,3,0,4,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/CPS1988.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/CPS1988.html"
"AER","CPSSW04","Stock and Watson CPS Data Sets",7986,4,2,0,2,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/CPSSW04.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/CPSSW04.html"
"AER","CPSSW3","Stock and Watson CPS Data Sets",20999,3,1,0,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/CPSSW3.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/CPSSW3.html"
"AER","CPSSW8","Stock and Watson CPS Data Sets",61395,5,1,0,2,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/CPSSW8.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/CPSSW8.html"
"AER","CPSSW9204","Stock and Watson CPS Data Sets",15588,5,3,0,3,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/CPSSW9204.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/CPSSW9204.html"
"AER","CPSSW9298","Stock and Watson CPS Data Sets",13501,5,3,0,3,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/CPSSW9298.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/CPSSW9298.html"
"AER","CPSSWEducation","Stock and Watson CPS Data Sets",2950,4,2,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/CPSSWEducation.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/CPSSWEducation.html"
"AER","CreditCard","Expenditure and Default Data",1319,12,4,0,3,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/CreditCard.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/CreditCard.html"
"AER","DJFranses","Dow Jones Index Data (Franses)",770,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/DJFranses.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/DJFranses.html"
"AER","DJIA8012","Dow Jones Industrial Average (DJIA) index",8610,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/DJIA8012.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/DJIA8012.html"
"AER","DoctorVisits","Australian Health Service Utilization Data",5190,12,6,0,6,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/DoctorVisits.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/DoctorVisits.html"
"AER","DutchAdvert","TV and Radio Advertising Expenditures Data",221,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/DutchAdvert.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/DutchAdvert.html"
"AER","DutchSales","Dutch Retail Sales Index Data",425,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/DutchSales.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/DutchSales.html"
"AER","Electricity1955","Cost Function of Electricity Producers (1955, Nerlove Data)",159,8,0,0,0,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/Electricity1955.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/Electricity1955.html"
"AER","Electricity1970","Cost Function of Electricity Producers 1970",158,8,0,0,0,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/Electricity1970.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/Electricity1970.html"
"AER","EquationCitations","Number of Equations and Citations for Evolutionary Biology Publications",649,13,0,1,1,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/EquationCitations.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/EquationCitations.html"
"AER","Equipment","Transportation Equipment Manufacturing Data",25,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/Equipment.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/Equipment.html"
"AER","EuroEnergy","European Energy Consumption Data",20,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/EuroEnergy.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/EuroEnergy.html"
"AER","Fatalities","US Traffic Fatalities",336,34,3,0,5,0,29,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/Fatalities.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/Fatalities.html"
"AER","Fertility","Fertility and Women's Labor Supply",254654,8,6,0,6,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/Fertility.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/Fertility.html"
"AER","Fertility2","Fertility and Women's Labor Supply",30000,8,6,0,6,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/Fertility2.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/Fertility2.html"
"AER","FrozenJuice","Price of Frozen Orange Juice",612,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/FrozenJuice.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/FrozenJuice.html"
"AER","GermanUnemployment","Unemployment in Germany Data",120,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/GermanUnemployment.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/GermanUnemployment.html"
"AER","GoldSilver","Gold and Silver Prices",9132,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/GoldSilver.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/GoldSilver.html"
"AER","GrowthDJ","Determinants of Economic Growth",121,10,3,0,3,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/GrowthDJ.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/GrowthDJ.html"
"AER","GrowthSW","Determinants of Economic Growth",65,6,0,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/GrowthSW.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/GrowthSW.html"
"AER","Grunfeld","Grunfeld's Investment Data",220,5,0,0,1,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/Grunfeld.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/Grunfeld.html"
"AER","GSOEP9402","German Socio-Economic Panel 1994-2002",675,12,1,0,5,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/GSOEP9402.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/GSOEP9402.html"
"AER","GSS7402","US General Social Survey 1974-2002",9120,10,4,0,4,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/GSS7402.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/GSS7402.html"
"AER","Guns","More Guns, Less Crime?",1173,13,1,0,3,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/Guns.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/Guns.html"
"AER","HealthInsurance","Medical Expenditure Panel Survey Data",8802,11,6,0,9,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/HealthInsurance.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/HealthInsurance.html"
"AER","HMDA","Home Mortgage Disclosure Act Data",2380,14,8,0,10,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/HMDA.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/HMDA.html"
"AER","HousePrices","House Prices in the City of Windsor, Canada",546,12,6,0,6,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/HousePrices.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/HousePrices.html"
"AER","Journals","Economics Journal Subscription Data",180,10,1,1,3,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/Journals.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/Journals.html"
"AER","KleinI","Klein Model I",22,9,0,0,0,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/KleinI.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/KleinI.html"
"AER","Longley","Longley's Regression Data",16,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/Longley.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/Longley.html"
"AER","ManufactCosts","Manufacturing Costs Data",25,9,0,0,0,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/ManufactCosts.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/ManufactCosts.html"
"AER","MarkDollar","DEM/USD Exchange Rate Returns",518,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/MarkDollar.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/MarkDollar.html"
"AER","MarkPound","DEM/GBP Exchange Rate Returns",1974,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/MarkPound.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/MarkPound.html"
"AER","MASchools","Massachusetts Test Score Data",220,16,0,2,0,0,14,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/MASchools.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/MASchools.html"
"AER","Medicaid1986","Medicaid Utilization Data",996,14,5,0,5,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/Medicaid1986.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/Medicaid1986.html"
"AER","Mortgage","Fixed versus Adjustable Mortgages",78,16,5,0,5,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/Mortgage.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/Mortgage.html"
"AER","MotorCycles","Motor Cycles in The Netherlands",48,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/MotorCycles.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/MotorCycles.html"
"AER","MotorCycles2","Motor Cycles in The Netherlands",67,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/MotorCycles2.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/MotorCycles2.html"
"AER","MSCISwitzerland","MSCI Switzerland Index",4697,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/MSCISwitzerland.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/MSCISwitzerland.html"
"AER","Municipalities","Municipal Expenditure Data",2385,5,0,0,2,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/Municipalities.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/Municipalities.html"
"AER","MurderRates","Determinants of Murder Rates in the United States",44,8,1,0,1,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/MurderRates.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/MurderRates.html"
"AER","NaturalGas","Natural Gas Data",138,10,0,0,3,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/NaturalGas.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/NaturalGas.html"
"AER","NMES1988","Demand for Medical Care in NMES 1988",4406,19,7,0,9,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/NMES1988.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/NMES1988.html"
"AER","NYSESW","Daily NYSE Composite Index",4003,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/NYSESW.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/NYSESW.html"
"AER","OECDGas","Gasoline Consumption Data",342,6,0,0,1,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/OECDGas.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/OECDGas.html"
"AER","OECDGrowth","OECD Macroeconomic Data",22,6,0,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/OECDGrowth.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/OECDGrowth.html"
"AER","OlympicTV","Television Rights for Olympic Games",10,2,0,0,1,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/OlympicTV.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/OlympicTV.html"
"AER","OrangeCounty","Orange County Employment",76,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/OrangeCounty.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/OrangeCounty.html"
"AER","Parade2005","Parade Magazine 2005 Earnings Data",130,5,2,0,3,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/Parade2005.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/Parade2005.html"
"AER","PepperPrice","Black and White Pepper Prices",271,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/PepperPrice.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/PepperPrice.html"
"AER","PhDPublications","Doctoral Publications",915,6,2,0,2,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/PhDPublications.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/PhDPublications.html"
"AER","ProgramEffectiveness","Program Effectiveness Data",32,4,2,0,2,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/ProgramEffectiveness.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/ProgramEffectiveness.html"
"AER","PSID1976","Labor Force Participation Data",753,21,4,0,4,0,17,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/PSID1976.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/PSID1976.html"
"AER","PSID1982","PSID Earnings Data 1982",595,12,8,0,8,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/PSID1982.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/PSID1982.html"
"AER","PSID7682","PSID Earnings Panel Data (1976-1982)",4165,14,8,0,10,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/PSID7682.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/PSID7682.html"
"AER","RecreationDemand","Recreation Demand Data",659,8,2,0,2,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/RecreationDemand.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/RecreationDemand.html"
"AER","ResumeNames","Are Emily and Greg More Employable Than Lakisha and Jamal?",4870,27,21,0,25,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/ResumeNames.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/ResumeNames.html"
"AER","ShipAccidents","Ship Accidents",40,5,1,0,3,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/ShipAccidents.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/ShipAccidents.html"
"AER","SIC33","SIC33 Production Data",27,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/SIC33.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/SIC33.html"
"AER","SmokeBan","Do Workplace Smoking Bans Reduce Smoking?",10000,7,5,0,6,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/SmokeBan.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/SmokeBan.html"
"AER","SportsCards","Endowment Effect for Sports Cards",148,9,4,0,6,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/SportsCards.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/SportsCards.html"
"AER","STAR","Project STAR: Student-Teacher Achievement Ratio",11598,47,8,0,34,0,12,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/STAR.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/STAR.html"
"AER","StrikeDuration","Strike Durations",62,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/StrikeDuration.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/StrikeDuration.html"
"AER","SwissLabor","Swiss Labor Market Participation Data",872,7,2,0,2,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/SwissLabor.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/SwissLabor.html"
"AER","TeachingRatings","Impact of Beauty on Instructor's Teaching Ratings",463,12,6,0,7,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/TeachingRatings.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/TeachingRatings.html"
"AER","TechChange","Technological Change Data",41,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/TechChange.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/TechChange.html"
"AER","TradeCredit","Trade Credit and the Money Market",21,7,0,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/TradeCredit.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/TradeCredit.html"
"AER","TravelMode","Travel Mode Choice Data",840,9,1,0,3,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/TravelMode.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/TravelMode.html"
"AER","UKInflation","UK Manufacturing Inflation Data",54,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/UKInflation.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/UKInflation.html"
"AER","UKNonDurables","Consumption of Non-Durables in the UK",136,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/UKNonDurables.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/UKNonDurables.html"
"AER","USAirlines","Cost Data for US Airlines",90,6,0,0,2,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/USAirlines.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/USAirlines.html"
"AER","USConsump1950","US Consumption Data (1940-1950)",11,3,1,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/USConsump1950.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/USConsump1950.html"
"AER","USConsump1979","US Consumption Data (1970-1979)",10,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/USConsump1979.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/USConsump1979.html"
"AER","USConsump1993","US Consumption Data (1950-1993)",44,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/USConsump1993.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/USConsump1993.html"
"AER","USCrudes","US Crudes Data",99,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/USCrudes.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/USCrudes.html"
"AER","USGasB","US Gasoline Market Data (1950-1987, Baltagi)",38,6,0,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/USGasB.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/USGasB.html"
"AER","USGasG","US Gasoline Market Data (1960-1995, Greene)",36,10,0,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/USGasG.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/USGasG.html"
"AER","USInvest","US Investment Data",15,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/USInvest.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/USInvest.html"
"AER","USMacroB","US Macroeconomic Data (1959-1995, Baltagi)",146,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/USMacroB.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/USMacroB.html"
"AER","USMacroG","US Macroeconomic Data (1950-2000, Greene)",204,12,0,0,0,0,12,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/USMacroG.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/USMacroG.html"
"AER","USMacroSW","US Macroeconomic Data (1957-2005, Stock & Watson)",193,7,0,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/USMacroSW.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/USMacroSW.html"
"AER","USMacroSWM","Monthly US Macroeconomic Data (1947-2004, Stock & Watson)",696,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/USMacroSWM.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/USMacroSWM.html"
"AER","USMacroSWQ","Quarterly US Macroeconomic Data (1947-2004, Stock & Watson)",232,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/USMacroSWQ.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/USMacroSWQ.html"
"AER","USMoney","USMoney",136,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/USMoney.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/USMoney.html"
"AER","USProdIndex","Index of US Industrial Production",128,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/USProdIndex.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/USProdIndex.html"
"AER","USSeatBelts","Effects of Mandatory Seat Belt Laws in the US",765,12,4,0,7,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/USSeatBelts.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/USSeatBelts.html"
"AER","USStocksSW","Monthly US Stock Returns (1931-2002, Stock & Watson)",864,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/USStocksSW.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/USStocksSW.html"
"AER","WeakInstrument","Artificial Weak Instrument Data",200,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/AER/WeakInstrument.csv","https://vincentarelbundock.github.io/Rdatasets/doc/AER/WeakInstrument.html"
"aod","antibio","Antibiotics against Shipping Fever in Calves",24,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/aod/antibio.csv","https://vincentarelbundock.github.io/Rdatasets/doc/aod/antibio.html"
"aod","cohorts","Age, Period and Cohort Effects for Vital Rates",49,4,0,0,2,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/aod/cohorts.csv","https://vincentarelbundock.github.io/Rdatasets/doc/aod/cohorts.html"
"aod","dja","Mortality of Djallonke Lambs in Senegal",75,6,1,0,3,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/aod/dja.csv","https://vincentarelbundock.github.io/Rdatasets/doc/aod/dja.html"
"aod","lizards","A Comparison of Site Preferences of Two Species of Lizard",24,6,3,0,4,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/aod/lizards.csv","https://vincentarelbundock.github.io/Rdatasets/doc/aod/lizards.html"
"aod","mice","Pregnant Female Mice Experiment",20,3,1,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/aod/mice.csv","https://vincentarelbundock.github.io/Rdatasets/doc/aod/mice.html"
"aod","orob1","Germination Data",16,3,0,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/aod/orob1.csv","https://vincentarelbundock.github.io/Rdatasets/doc/aod/orob1.html"
"aod","orob2","Germination Data",21,4,2,0,2,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/aod/orob2.csv","https://vincentarelbundock.github.io/Rdatasets/doc/aod/orob2.html"
"aod","rabbits","Rabbits Foetuses Survival Experiment",84,3,0,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/aod/rabbits.csv","https://vincentarelbundock.github.io/Rdatasets/doc/aod/rabbits.html"
"aod","rats","Rats Diet Experiment",32,3,1,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/aod/rats.csv","https://vincentarelbundock.github.io/Rdatasets/doc/aod/rats.html"
"aod","salmonella","Salmonella Reverse Mutagenicity Assay",18,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/aod/salmonella.csv","https://vincentarelbundock.github.io/Rdatasets/doc/aod/salmonella.html"
"asaur","ashkenazi","ashkenazi",3920,4,2,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/asaur/ashkenazi.csv","https://vincentarelbundock.github.io/Rdatasets/doc/asaur/ashkenazi.html"
"asaur","ChanningHouse","Channing House Data",457,5,2,0,1,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/asaur/ChanningHouse.csv","https://vincentarelbundock.github.io/Rdatasets/doc/asaur/ChanningHouse.html"
"asaur","gastricXelox","gasticXelox",48,2,1,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/asaur/gastricXelox.csv","https://vincentarelbundock.github.io/Rdatasets/doc/asaur/gastricXelox.html"
"asaur","hepatoCellular","hepatoCellular",227,48,15,0,0,0,48,"https://vincentarelbundock.github.io/Rdatasets/csv/asaur/hepatoCellular.csv","https://vincentarelbundock.github.io/Rdatasets/doc/asaur/hepatoCellular.html"
"asaur","pancreatic","pancreatic",41,4,1,0,4,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/asaur/pancreatic.csv","https://vincentarelbundock.github.io/Rdatasets/doc/asaur/pancreatic.html"
"asaur","pancreatic2","pancreatic2",41,4,1,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/asaur/pancreatic2.csv","https://vincentarelbundock.github.io/Rdatasets/doc/asaur/pancreatic2.html"
"asaur","pharmacoSmoking","pharmacoSmoking",125,14,5,0,7,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/asaur/pharmacoSmoking.csv","https://vincentarelbundock.github.io/Rdatasets/doc/asaur/pharmacoSmoking.html"
"asaur","prostateSurvival","prostateSurvival",14294,5,1,0,3,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/asaur/prostateSurvival.csv","https://vincentarelbundock.github.io/Rdatasets/doc/asaur/prostateSurvival.html"
"bakeoff","bakers (data)","Bakers",120,24,1,6,0,0,14,"https://vincentarelbundock.github.io/Rdatasets/csv/bakeoff/bakers.csv","https://vincentarelbundock.github.io/Rdatasets/doc/bakeoff/bakers.html"
"bakeoff","bakers_raw (data)","Bakers (raw)",120,8,0,6,1,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/bakeoff/bakers_raw.csv","https://vincentarelbundock.github.io/Rdatasets/doc/bakeoff/bakers_raw.html"
"bakeoff","bakes_raw (data)","Bakes (raw)",548,6,0,3,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/bakeoff/bakes_raw.csv","https://vincentarelbundock.github.io/Rdatasets/doc/bakeoff/bakes_raw.html"
"bakeoff","challenges (data)","Challenges",1136,7,0,4,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/bakeoff/challenges.csv","https://vincentarelbundock.github.io/Rdatasets/doc/bakeoff/challenges.html"
"bakeoff","episodes (data)","Episodes",94,10,1,3,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/bakeoff/episodes.csv","https://vincentarelbundock.github.io/Rdatasets/doc/bakeoff/episodes.html"
"bakeoff","episodes_raw (data)","Each episodes' challenges (raw)",704,6,0,3,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/bakeoff/episodes_raw.csv","https://vincentarelbundock.github.io/Rdatasets/doc/bakeoff/episodes_raw.html"
"bakeoff","ratings (data)","Ratings",94,11,0,1,0,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/bakeoff/ratings.csv","https://vincentarelbundock.github.io/Rdatasets/doc/bakeoff/ratings.html"
"bakeoff","ratings_raw (data)","Each episode's ratings (raw)",94,9,0,0,2,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/bakeoff/ratings_raw.csv","https://vincentarelbundock.github.io/Rdatasets/doc/bakeoff/ratings_raw.html"
"bakeoff","results_raw (data)","Each baker's results by episode (raw)",1136,4,0,1,3,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/bakeoff/results_raw.csv","https://vincentarelbundock.github.io/Rdatasets/doc/bakeoff/results_raw.html"
"bakeoff","seasons_raw (data)","Data about each season aired in the US (raw)",50,4,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/bakeoff/seasons_raw.csv","https://vincentarelbundock.github.io/Rdatasets/doc/bakeoff/seasons_raw.html"
"bakeoff","series_raw (data)","Data about each series aired in the UK (raw)",10,11,1,6,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/bakeoff/series_raw.csv","https://vincentarelbundock.github.io/Rdatasets/doc/bakeoff/series_raw.html"
"bakeoff","spice_test_wide (data)","Spice Test",4,7,5,4,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/bakeoff/spice_test_wide.csv","https://vincentarelbundock.github.io/Rdatasets/doc/bakeoff/spice_test_wide.html"
"betareg","CarTask","Partition-primed Probability Judgement Task for Car Dealership",155,3,1,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/betareg/CarTask.csv","https://vincentarelbundock.github.io/Rdatasets/doc/betareg/CarTask.html"
"betareg","FoodExpenditure","Proportion of Household Income Spent on Food",38,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/betareg/FoodExpenditure.csv","https://vincentarelbundock.github.io/Rdatasets/doc/betareg/FoodExpenditure.html"
"betareg","GasolineYield","Estimation of Gasoline Yields from Crude Oil",32,6,0,0,1,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/betareg/GasolineYield.csv","https://vincentarelbundock.github.io/Rdatasets/doc/betareg/GasolineYield.html"
"betareg","ImpreciseTask","Imprecise Probabilities for Sunday Weather and Boeing Stock Task",242,3,1,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/betareg/ImpreciseTask.csv","https://vincentarelbundock.github.io/Rdatasets/doc/betareg/ImpreciseTask.html"
"betareg","LossAversion","(No) Myopic Loss Aversion in Adolescents",570,7,4,0,5,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/betareg/LossAversion.csv","https://vincentarelbundock.github.io/Rdatasets/doc/betareg/LossAversion.html"
"betareg","MockJurors","Confidence of Mock Jurors in Their Verdicts",104,3,2,0,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/betareg/MockJurors.csv","https://vincentarelbundock.github.io/Rdatasets/doc/betareg/MockJurors.html"
"betareg","ReadingSkills","Dyslexia and IQ Predicting Reading Accuracy",44,4,1,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/betareg/ReadingSkills.csv","https://vincentarelbundock.github.io/Rdatasets/doc/betareg/ReadingSkills.html"
"betareg","StressAnxiety","Dependency of Anxiety on Stress",166,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/betareg/StressAnxiety.csv","https://vincentarelbundock.github.io/Rdatasets/doc/betareg/StressAnxiety.html"
"betareg","WeatherTask","Weather Task With Priming and Precise and Imprecise Probabilities",345,3,2,0,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/betareg/WeatherTask.csv","https://vincentarelbundock.github.io/Rdatasets/doc/betareg/WeatherTask.html"
"boot","acme","Monthly Excess Returns",60,3,0,1,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/acme.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/acme.html"
"boot","aids","Delay in AIDS Reporting in England and Wales",570,6,1,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/aids.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/aids.html"
"boot","aircondit","Failures of Air-conditioning Equipment",12,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/aircondit.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/aircondit.html"
"boot","aircondit7","Failures of Air-conditioning Equipment",24,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/aircondit7.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/aircondit7.html"
"boot","amis","Car Speeding and Warning Signs",8437,4,1,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/amis.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/amis.html"
"boot","aml","Remission Times for Acute Myelogenous Leukaemia",23,3,2,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/aml.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/aml.html"
"boot","beaver","Beaver Body Temperature Data",100,4,2,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/beaver.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/beaver.html"
"boot","bigcity","Population of U.S. Cities",49,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/bigcity.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/bigcity.html"
"boot","brambles","Spatial Location of Bramble Canes",823,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/brambles.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/brambles.html"
"boot","breslow","Smoking Deaths Among Doctors",10,5,1,0,1,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/breslow.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/breslow.html"
"boot","calcium","Calcium Uptake Data",27,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/calcium.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/calcium.html"
"boot","cane","Sugar-cane Disease Data",180,5,0,0,2,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/cane.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/cane.html"
"boot","capability","Simulated Manufacturing Process Data",75,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/capability.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/capability.html"
"boot","catsM","Weight Data for Domestic Cats",97,3,0,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/catsM.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/catsM.html"
"boot","cav","Position of Muscle Caveolae",138,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/cav.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/cav.html"
"boot","cd4","CD4 Counts for HIV-Positive Patients",20,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/cd4.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/cd4.html"
"boot","channing","Channing House Data",462,5,2,0,1,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/channing.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/channing.html"
"boot","city","Population of U.S. Cities",10,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/city.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/city.html"
"boot","claridge","Genetic Links to Left-handedness",37,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/claridge.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/claridge.html"
"boot","cloth","Number of Flaws in Cloth",32,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/cloth.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/cloth.html"
"boot","co.transfer","Carbon Monoxide Transfer",7,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/co.transfer.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/co.transfer.html"
"boot","coal","Dates of Coal Mining Disasters",191,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/coal.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/coal.html"
"boot","darwin","Darwin's Plant Height Differences",15,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/darwin.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/darwin.html"
"boot","dogs","Cardiac Data for Domestic Dogs",7,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/dogs.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/dogs.html"
"boot","downs.bc","Incidence of Down's Syndrome in British Columbia",30,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/downs.bc.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/downs.bc.html"
"boot","ducks","Behavioral and Plumage Characteristics of Hybrid Ducks",11,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/ducks.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/ducks.html"
"boot","fir","Counts of Balsam-fir Seedlings",50,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/fir.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/fir.html"
"boot","frets","Head Dimensions in Brothers",25,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/frets.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/frets.html"
"boot","grav","Acceleration Due to Gravity",26,2,1,0,1,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/grav.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/grav.html"
"boot","gravity","Acceleration Due to Gravity",81,2,0,0,1,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/gravity.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/gravity.html"
"boot","hirose","Failure Time of PET Film",44,3,1,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/hirose.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/hirose.html"
"boot","islay","Jura Quartzite Azimuths on Islay",18,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/islay.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/islay.html"
"boot","manaus","Average Heights of the Rio Negro river at Manaus",1080,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/manaus.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/manaus.html"
"boot","melanoma","Survival from Malignant Melanoma",205,7,2,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/melanoma.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/melanoma.html"
"boot","motor","Data from a Simulated Motorcycle Accident",94,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/motor.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/motor.html"
"boot","neuro","Neurophysiological Point Process Data",469,6,0,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/neuro.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/neuro.html"
"boot","nitrofen","Toxicity of Nitrofen in Aquatic Systems",50,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/nitrofen.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/nitrofen.html"
"boot","nodal","Nodal Involvement in Prostate Cancer",53,7,6,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/nodal.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/nodal.html"
"boot","nuclear","Nuclear Power Station Construction Data",32,11,5,0,0,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/nuclear.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/nuclear.html"
"boot","paulsen","Neurotransmission in Guinea Pig Brains",346,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/paulsen.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/paulsen.html"
"boot","poisons","Animal Survival Times",48,3,0,0,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/poisons.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/poisons.html"
"boot","polar","Pole Positions of New Caledonian Laterites",50,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/polar.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/polar.html"
"boot","remission","Cancer Remission and Cell Activity",27,3,1,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/remission.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/remission.html"
"boot","salinity","Water Salinity and River Discharge",28,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/salinity.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/salinity.html"
"boot","survival","Survival of Rats after Radiation Doses",14,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/survival.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/survival.html"
"boot","tau","Tau Particle Decay Modes",60,2,0,0,1,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/tau.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/tau.html"
"boot","tuna","Tuna Sighting Data",64,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/tuna.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/tuna.html"
"boot","urine","Urine Analysis Data",79,7,1,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/urine.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/urine.html"
"boot","wool","Australian Relative Wool Prices",309,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/boot/wool.csv","https://vincentarelbundock.github.io/Rdatasets/doc/boot/wool.html"
"carData","Adler","Experimenter Expectations",108,3,1,0,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Adler.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Adler.html"
"carData","AMSsurvey","American Math Society Survey Data",24,5,2,0,3,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/AMSsurvey.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/AMSsurvey.html"
"carData","Angell","Moral Integration of American Cities",43,4,0,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Angell.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Angell.html"
"carData","Anscombe","U. S. State Public-School Expenditures",51,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Anscombe.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Anscombe.html"
"carData","Arrests","Arrests for Marijuana Possession",5226,8,5,0,5,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Arrests.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Arrests.html"
"carData","Baumann","Methods of Teaching Reading Comprehension",66,6,0,0,1,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Baumann.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Baumann.html"
"carData","BEPS","British Election Panel Study",1525,10,1,0,2,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/BEPS.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/BEPS.html"
"carData","Bfox","Canadian Women's Labour-Force Participation",30,6,0,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Bfox.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Bfox.html"
"carData","Blackmore","Exercise Histories of Eating-Disordered and Control Subjects",945,4,1,0,2,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Blackmore.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Blackmore.html"
"carData","Burt","Fraudulent Data on IQs of Twins Raised Apart",27,3,0,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Burt.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Burt.html"
"carData","CanPop","Canadian Population Data",16,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/CanPop.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/CanPop.html"
"carData","CES11","2011 Canadian National Election Study, With Attitude Toward Abortion",2231,9,3,0,6,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/CES11.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/CES11.html"
"carData","Chile","Voting Intentions in the 1988 Chilean Plebiscite",2700,8,1,0,4,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Chile.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Chile.html"
"carData","Chirot","The 1907 Romanian Peasant Rebellion",32,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Chirot.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Chirot.html"
"carData","Cowles","Cowles and Davis's Data on Volunteering",1421,4,2,0,2,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Cowles.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Cowles.html"
"carData","Davis","Self-Reports of Height and Weight",200,5,1,0,1,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Davis.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Davis.html"
"carData","DavisThin","Davis's Data on Drive for Thinness",191,7,0,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/DavisThin.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/DavisThin.html"
"carData","Depredations","Minnesota Wolf Depredation Data",434,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Depredations.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Depredations.html"
"carData","Duncan","Duncan's Occupational Prestige Data",45,4,0,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Duncan.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Duncan.html"
"carData","Ericksen","The 1980 U.S. Census Undercount",66,9,1,0,1,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Ericksen.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Ericksen.html"
"carData","Florida","Florida County Voting",67,11,0,0,0,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Florida.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Florida.html"
"carData","Freedman","Crowding and Crime in U. S. Metropolitan Areas",110,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Freedman.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Freedman.html"
"carData","Friendly","Format Effects on Recall",30,2,0,0,1,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Friendly.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Friendly.html"
"carData","Ginzberg","Data on Depression",82,6,0,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Ginzberg.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Ginzberg.html"
"carData","Greene","Refugee Appeals",384,7,3,0,6,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Greene.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Greene.html"
"carData","GSSvocab","Data from the General Social Survey (GSS) from the National Opinion Research Center of the University of Chicago.",28867,8,2,0,5,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/GSSvocab.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/GSSvocab.html"
"carData","Guyer","Anonymity and Cooperation",20,3,2,0,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Guyer.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Guyer.html"
"carData","Hartnagel","Canadian Crime-Rates Time Series",38,8,0,0,0,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Hartnagel.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Hartnagel.html"
"carData","Highway1","Highway Accidents",39,12,0,0,1,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Highway1.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Highway1.html"
"carData","KosteckiDillon","Treatment of Migraine Headaches",4152,9,2,0,4,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/KosteckiDillon.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/KosteckiDillon.html"
"carData","Leinhardt","Data on Infant-Mortality",105,4,1,0,2,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Leinhardt.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Leinhardt.html"
"carData","LoBD","Cancer drug data use to provide an example of the use of the skew power distributions.",84,9,0,0,1,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/LoBD.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/LoBD.html"
"carData","Mandel","Contrived Collinear Data",8,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Mandel.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Mandel.html"
"carData","Migration","Canadian Interprovincial Migration Data",90,8,0,0,2,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Migration.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Migration.html"
"carData","Moore","Status, Authoritarianism, and Conformity",45,4,1,0,2,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Moore.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Moore.html"
"carData","MplsDemo","Minneapolis Demographic Data 2015, by Neighborhood",84,8,0,1,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/MplsDemo.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/MplsDemo.html"
"carData","MplsStops","Minneapolis Police Department 2017 Stop Data",51920,14,5,0,10,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/MplsStops.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/MplsStops.html"
"carData","Mroz","U.S. Women's Labor-Force Participation",753,8,3,0,3,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Mroz.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Mroz.html"
"carData","OBrienKaiser","O'Brien and Kaiser's Repeated-Measures Data",16,17,1,0,2,0,15,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/OBrienKaiser.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/OBrienKaiser.html"
"carData","OBrienKaiserLong","O'Brien and Kaiser's Repeated-Measures Data in ""Long"" Format",240,6,1,0,4,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/OBrienKaiserLong.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/OBrienKaiserLong.html"
"carData","Ornstein","Interlocking Directorates Among Major Canadian Firms",248,4,0,0,2,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Ornstein.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Ornstein.html"
"carData","Pottery","Chemical Composition of Pottery",26,6,0,0,1,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Pottery.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Pottery.html"
"carData","Prestige","Prestige of Canadian Occupations",102,6,0,0,1,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Prestige.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Prestige.html"
"carData","Quartet","Four Regression Datasets",11,6,1,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Quartet.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Quartet.html"
"carData","Robey","Fertility and Contraception",50,3,0,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Robey.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Robey.html"
"carData","Rossi","Rossi et al.'s Criminal Recidivism Data",432,62,58,0,57,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Rossi.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Rossi.html"
"carData","Sahlins","Agricultural Production in Mazulu Village",20,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Sahlins.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Sahlins.html"
"carData","Salaries","Salaries for Professors",397,6,2,0,3,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Salaries.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Salaries.html"
"carData","SLID","Survey of Labour and Income Dynamics",7425,5,1,0,2,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/SLID.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/SLID.html"
"carData","Soils","Soil Compositions of Physical and Chemical Characteristics",48,14,0,0,5,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Soils.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Soils.html"
"carData","States","Education and Related Statistics for the U.S. States",51,7,0,0,1,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/States.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/States.html"
"carData","TitanicSurvival","Survival of Passengers on the Titanic",1309,4,2,0,3,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/TitanicSurvival.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/TitanicSurvival.html"
"carData","Transact","Transaction data",261,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Transact.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Transact.html"
"carData","UN","National Statistics from the United Nations, Mostly From 2009-2011",213,7,0,0,2,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/UN.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/UN.html"
"carData","UN98","United Nations Social Indicators Data 1998]",207,13,0,0,1,0,12,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/UN98.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/UN98.html"
"carData","USPop","Population of the United States",22,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/USPop.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/USPop.html"
"carData","Vocab","Vocabulary and Education",30351,4,1,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Vocab.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Vocab.html"
"carData","WeightLoss","Weight Loss Data",34,7,0,0,1,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/WeightLoss.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/WeightLoss.html"
"carData","Wells","Well Switching in Bangladesh",3020,5,2,0,2,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Wells.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Wells.html"
"carData","Womenlf","Canadian Women's Labour-Force Participation",263,4,1,0,3,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Womenlf.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Womenlf.html"
"carData","Wong","Post-Coma Recovery of IQ",331,7,1,0,1,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Wong.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Wong.html"
"carData","Wool","Wool data",27,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/Wool.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/Wool.html"
"carData","WVS","World Values Surveys",5381,6,3,0,5,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/carData/WVS.csv","https://vincentarelbundock.github.io/Rdatasets/doc/carData/WVS.html"
"causaldata","abortion","Data on abortion legalization and sexually transmitted infections",19584,22,8,0,0,0,22,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/abortion.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/abortion.html"
"causaldata","adult_services","Data from a survey of internet-mediated sex workers",1787,31,20,0,0,0,31,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/adult_services.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/adult_services.html"
"causaldata","auto","Automobile data from Stata",74,12,1,1,0,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/auto.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/auto.html"
"causaldata","avocado","Data on avocado sales",169,3,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/avocado.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/avocado.html"
"causaldata","black_politicians","Data from ""Black Politicians are More Intrinsically Motivated to Advance Blacks' Interests""",5593,14,7,0,0,0,14,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/black_politicians.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/black_politicians.html"
"causaldata","castle","Data on castle-doctrine statutes and violent crime",550,139,60,0,0,0,139,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/castle.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/castle.html"
"causaldata","close_college","Data from Card (1995) to estimate the effect of college education on earnings",3010,8,4,0,0,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/close_college.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/close_college.html"
"causaldata","close_elections_lmb","A close-elections regression discontinuity study from Lee, Moretti, and Butler (2004)",13588,9,2,0,0,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/close_elections_lmb.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/close_elections_lmb.html"
"causaldata","cps_mixtape","Observational counterpart to nsw_mixtape data",15992,11,4,1,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/cps_mixtape.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/cps_mixtape.html"
"causaldata","credit_cards","Data on Taiwanese Credit Card Holders",30000,4,2,0,0,2,2,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/credit_cards.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/credit_cards.html"
"causaldata","gapminder","Gapminder data",1704,6,0,0,2,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/gapminder.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/gapminder.html"
"causaldata","google_stock","Google Stock Data",84,3,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/google_stock.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/google_stock.html"
"causaldata","gov_transfers","Data from ""Government Transfers and Political Support""",1948,5,1,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/gov_transfers.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/gov_transfers.html"
"causaldata","gov_transfers_density","Data from ""Government Transfers and Political Support"" for Density Tests",52549,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/gov_transfers_density.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/gov_transfers_density.html"
"causaldata","greek_data","Data from a fictional randomized heart transplant study",20,4,3,1,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/greek_data.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/greek_data.html"
"causaldata","mortgages","Data from ""How do Mortgage Subsidies Affect Home Ownership? Evidence from the Mid-Century GI Bills""",214144,6,3,1,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/mortgages.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/mortgages.html"
"causaldata","Mroz","U.S. Women's Labor-Force Participation",753,8,3,0,0,3,5,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/Mroz.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/Mroz.html"
"causaldata","nhefs","National Health and Nutrition Examination Survey Data I Epidemiologic Follow-up Study",1629,67,27,0,5,0,62,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/nhefs.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/nhefs.html"
"causaldata","nhefs_codebook","NHEFS Codebook",64,2,0,2,0,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/nhefs_codebook.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/nhefs_codebook.html"
"causaldata","nhefs_complete","Complete-Data National Health and Nutrition Examination Survey Data I Epidemiologic Follow-up Study",1566,67,26,0,5,0,62,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/nhefs_complete.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/nhefs_complete.html"
"causaldata","nsw_mixtape","Data from the National Supported Work Demonstration (NSW) job-training program",445,11,5,1,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/nsw_mixtape.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/nsw_mixtape.html"
"causaldata","organ_donations","Organ Donation Data",162,4,0,2,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/organ_donations.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/organ_donations.html"
"causaldata","restaurant_inspections","Data on Restaurant Inspections",27178,5,1,1,0,1,3,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/restaurant_inspections.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/restaurant_inspections.html"
"causaldata","ri","A simple simulated data set for calculating p-values",8,5,1,3,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/ri.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/ri.html"
"causaldata","scorecard","Earnings and Loan Repayment in US Four-Year Colleges",48445,8,0,2,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/scorecard.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/scorecard.html"
"causaldata","snow","Data from John Snow's 1855 study of the cause of cholera",4,4,3,2,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/snow.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/snow.html"
"causaldata","social_insure","Data from ""Social Networks and the Decision to Insure""",1410,13,5,2,0,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/social_insure.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/social_insure.html"
"causaldata","texas","Data on prison capacity expansion in Texas",816,12,0,1,0,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/texas.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/texas.html"
"causaldata","thornton_hiv","Data from HIV information experiment in Thornton (2008)",4820,7,2,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/thornton_hiv.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/thornton_hiv.html"
"causaldata","titanic","Data from the sinking of the Titanic",2201,4,3,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/titanic.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/titanic.html"
"causaldata","training_bias_reduction","Simulated data from a job training program for a bias reduction method",8,4,1,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/training_bias_reduction.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/training_bias_reduction.html"
"causaldata","training_example","Simulated data from a job training program",25,9,0,1,0,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/training_example.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/training_example.html"
"causaldata","yule","Data on 19th century English Poverty from Yule (1899)",32,5,0,1,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/yule.csv","https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/yule.html"
"cluster","agriculture","European Union Agricultural Workforces",12,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/cluster/agriculture.csv","https://vincentarelbundock.github.io/Rdatasets/doc/cluster/agriculture.html"
"cluster","animals","Attributes of Animals",20,6,6,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/cluster/animals.csv","https://vincentarelbundock.github.io/Rdatasets/doc/cluster/animals.html"
"cluster","chorSub","Subset of C-horizon of Kola Data",61,10,0,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/cluster/chorSub.csv","https://vincentarelbundock.github.io/Rdatasets/doc/cluster/chorSub.html"
"cluster","flower","Flower Characteristics",18,8,3,0,6,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/cluster/flower.csv","https://vincentarelbundock.github.io/Rdatasets/doc/cluster/flower.html"
"cluster","plantTraits","Plant Species Traits Data",136,31,20,0,28,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/cluster/plantTraits.csv","https://vincentarelbundock.github.io/Rdatasets/doc/cluster/plantTraits.html"
"cluster","pluton","Isotopic Composition Plutonium Batches",45,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/cluster/pluton.csv","https://vincentarelbundock.github.io/Rdatasets/doc/cluster/pluton.html"
"cluster","ruspini","Ruspini Data",75,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/cluster/ruspini.csv","https://vincentarelbundock.github.io/Rdatasets/doc/cluster/ruspini.html"
"cluster","votes.repub","Votes for Republican Candidate in Presidential Elections",50,31,0,0,0,0,31,"https://vincentarelbundock.github.io/Rdatasets/csv/cluster/votes.repub.csv","https://vincentarelbundock.github.io/Rdatasets/doc/cluster/votes.repub.html"
"cluster","xclara","Bivariate Data Set with 3 Clusters",3000,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/cluster/xclara.csv","https://vincentarelbundock.github.io/Rdatasets/doc/cluster/xclara.html"
"collegeScorecard","school","College Scorecard: School Data",11300,25,10,5,7,10,3,"https://vincentarelbundock.github.io/Rdatasets/csv/collegeScorecard/school.csv","https://vincentarelbundock.github.io/Rdatasets/doc/collegeScorecard/school.html"
"collegeScorecard","scorecard","College Scorecard: Scorecard Data",183306,24,0,1,0,0,23,"https://vincentarelbundock.github.io/Rdatasets/csv/collegeScorecard/scorecard.csv","https://vincentarelbundock.github.io/Rdatasets/doc/collegeScorecard/scorecard.html"
"COUNT","affairs","affairs",601,18,17,0,0,0,18,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/affairs.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/affairs.html"
"COUNT","azcabgptca","azcabgptca",1959,6,4,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/azcabgptca.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/azcabgptca.html"
"COUNT","azdrg112","azdrg112",1798,4,3,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/azdrg112.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/azdrg112.html"
"COUNT","azpro","azpro",3589,6,4,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/azpro.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/azpro.html"
"COUNT","azprocedure","azprocedure",3589,6,4,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/azprocedure.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/azprocedure.html"
"COUNT","badhealth","badhealth",1127,3,1,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/badhealth.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/badhealth.html"
"COUNT","fasttrakg","fasttrakg",15,9,6,0,0,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/fasttrakg.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/fasttrakg.html"
"COUNT","fishing","fishing",147,7,1,0,1,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/fishing.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/fishing.html"
"COUNT","lbw","lbw",189,10,4,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/lbw.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/lbw.html"
"COUNT","lbwgrp","lbwgrp",6,7,5,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/lbwgrp.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/lbwgrp.html"
"COUNT","loomis","loomis",410,11,8,0,0,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/loomis.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/loomis.html"
"COUNT","mdvis","mdvis",2227,13,8,0,0,0,13,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/mdvis.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/mdvis.html"
"COUNT","medpar","medpar",1495,10,7,1,0,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/medpar.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/medpar.html"
"COUNT","nuts","nuts",52,8,0,0,0,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/nuts.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/nuts.html"
"COUNT","rwm","rwm",27326,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/rwm.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/rwm.html"
"COUNT","rwm1984","rwm1984",3874,15,9,0,0,0,15,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/rwm1984.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/rwm1984.html"
"COUNT","rwm5yr","rwm5yr",19609,17,9,0,0,0,17,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/rwm5yr.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/rwm5yr.html"
"COUNT","ships","ships",40,7,4,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/ships.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/ships.html"
"COUNT","smoking","smoking",6,4,2,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/smoking.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/smoking.html"
"COUNT","titanic","titanic",1316,4,3,0,4,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/titanic.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/titanic.html"
"COUNT","titanicgrp","titanicgrp",12,5,2,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/titanicgrp.csv","https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/titanicgrp.html"
"crch","RainIbk","Precipitation Observations and Forecasts for Innsbruck",4971,12,0,0,0,0,12,"https://vincentarelbundock.github.io/Rdatasets/csv/crch/RainIbk.csv","https://vincentarelbundock.github.io/Rdatasets/doc/crch/RainIbk.html"
"DAAG","ACF1","Aberrant Crypt Foci in Rat Colons",22,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/ACF1.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/ACF1.html"
"DAAG","ais","Australian athletes data set",202,13,1,0,2,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/ais.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/ais.html"
"DAAG","alc2018","Alcohol consumption in Australia and New Zealand",28,5,1,1,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/alc2018.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/alc2018.html"
"DAAG","allbacks","Measurements on a Selection of Books",15,4,1,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/allbacks.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/allbacks.html"
"DAAG","anesthetic","Anesthetic Effectiveness",30,4,2,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/anesthetic.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/anesthetic.html"
"DAAG","ant111b","Averages by block of yields for the Antigua Corn data",32,9,0,0,2,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/ant111b.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/ant111b.html"
"DAAG","antigua","Averages by block of yields for the Antigua Corn data",288,7,0,0,3,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/antigua.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/antigua.html"
"DAAG","appletaste","Tasting experiment that compared four apple varieties",60,3,0,0,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/appletaste.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/appletaste.html"
"DAAG","audists","Road distances between 10 Australian cities",45,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/audists.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/audists.html"
"DAAG","aulatlong","Latitudes and longitudes for ten Australian cities",10,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/aulatlong.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/aulatlong.html"
"DAAG","austpop","Population figures for Australian States and Territories",9,10,0,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/austpop.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/austpop.html"
"DAAG","biomass","Biomass Data",153,8,0,0,2,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/biomass.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/biomass.html"
"DAAG","bomregions","Australian and Related Historical Annual Climate Data, by Region",109,34,0,0,0,0,34,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/bomregions.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/bomregions.html"
"DAAG","bomregions2018","Australian and Related Historical Annual Climate Data, by Region",119,35,0,0,0,0,35,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/bomregions2018.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/bomregions2018.html"
"DAAG","bomregions2021","Australian and Related Historical Annual Climate Data, by Region",122,35,0,0,0,0,35,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/bomregions2021.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/bomregions2021.html"
"DAAG","bomsoi","Southern Oscillation Index Data",106,21,0,0,0,0,21,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/bomsoi.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/bomsoi.html"
"DAAG","bostonc","Boston Housing Data - Corrected",517,1,0,1,0,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/bostonc.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/bostonc.html"
"DAAG","carprice","US Car Price Data",48,9,0,0,1,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/carprice.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/carprice.html"
"DAAG","Cars93.summary","A Summary of the Cars93 Data set",6,4,0,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/Cars93.summary.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/Cars93.summary.html"
"DAAG","cerealsugar","Percentage of Sugar in Breakfast Cereal",100,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/cerealsugar.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/cerealsugar.html"
"DAAG","cfseal","Cape Fur Seal Data",30,11,0,0,0,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/cfseal.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/cfseal.html"
"DAAG","cities","Populations of Major Canadian Cities (1992-96)",25,7,0,0,2,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/cities.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/cities.html"
"DAAG","codling","Dose-mortality data, for fumigation of codling moth with methyl bromide",99,10,1,1,1,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/codling.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/codling.html"
"DAAG","coralPval","P-values from biological expression array data",3072,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/coralPval.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/coralPval.html"
"DAAG","cottonworkers","Occupation and wage profiles of British cotton workers",14,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/cottonworkers.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/cottonworkers.html"
"DAAG","cps1","Labour Training Evaluation Data",15992,10,4,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/cps1.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/cps1.html"
"DAAG","cps2","Labour Training Evaluation Data",2369,10,4,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/cps2.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/cps2.html"
"DAAG","cps3","Labour Training Evaluation Data",429,10,4,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/cps3.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/cps3.html"
"DAAG","cricketer","Lifespans of UK 1st class cricketers born 1840-1960",5960,8,5,0,2,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/cricketer.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/cricketer.html"
"DAAG","cuckoohosts","Comparison of cuckoo eggs with host eggs",10,12,0,0,0,0,12,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/cuckoohosts.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/cuckoohosts.html"
"DAAG","cuckoos","Cuckoo Eggs Data",120,4,0,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/cuckoos.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/cuckoos.html"
"DAAG","dengue","Dengue prevalence, by administrative region",2000,13,1,0,0,0,13,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/dengue.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/dengue.html"
"DAAG","dewpoint","Dewpoint Data",72,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/dewpoint.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/dewpoint.html"
"DAAG","droughts","Periods Between Rain Events",2042,2,0,0,1,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/droughts.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/droughts.html"
"DAAG","edcCO2","EPICA Dome C Ice Core 800KYr Carbon Dioxide Data",1096,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/edcCO2.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/edcCO2.html"
"DAAG","edcT","EPICA Dome C Ice Core 800KYr Temperature Estimates",5788,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/edcT.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/edcT.html"
"DAAG","elastic1","Elastic Band Data Replicated",7,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/elastic1.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/elastic1.html"
"DAAG","elastic2","Elastic Band Data Replicated",9,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/elastic2.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/elastic2.html"
"DAAG","elasticband","Elastic Band Data",7,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/elasticband.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/elasticband.html"
"DAAG","fossilfuel","Fossil Fuel Data",5,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/fossilfuel.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/fossilfuel.html"
"DAAG","fossum","Possum Measurements",43,14,1,0,2,0,12,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/fossum.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/fossum.html"
"DAAG","frogs","Frogs Data",212,10,1,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/frogs.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/frogs.html"
"DAAG","frostedflakes","Frosted Flakes data",100,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/frostedflakes.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/frostedflakes.html"
"DAAG","fruitohms","Electrical Resistance of Kiwi Fruit",128,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/fruitohms.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/fruitohms.html"
"DAAG","gaba","Effect of pentazocine on post-operative pain (average VAS scores)",9,7,0,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/gaba.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/gaba.html"
"DAAG","geophones","Seismic Timing Data",56,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/geophones.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/geophones.html"
"DAAG","greatLakes","Yearly averages of Great Lake heights: 1918 - 2009",92,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/greatLakes.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/greatLakes.html"
"DAAG","grog","Alcohol consumption in Australia and New Zealand",18,5,1,0,1,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/grog.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/grog.html"
"DAAG","headInjury","Minor Head Injury (Simulated) Data",3121,11,11,0,0,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/headInjury.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/headInjury.html"
"DAAG","hills","Scottish Hill Races Data",35,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/hills.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/hills.html"
"DAAG","hills2000","Scottish Hill Races Data",56,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/hills2000.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/hills2000.html"
"DAAG","hotspots","Hawaian island chain hotspot Potassium-Argon ages",35,6,0,3,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/hotspots.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/hotspots.html"
"DAAG","hotspots2006","Hawaian island chain hotspot Argon-Argon ages",10,6,1,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/hotspots2006.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/hotspots2006.html"
"DAAG","houseprices","Aranda House Prices",15,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/houseprices.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/houseprices.html"
"DAAG","humanpower1","Oxygen uptake versus mechanical power, for humans",28,3,0,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/humanpower1.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/humanpower1.html"
"DAAG","humanpower2","Oxygen uptake versus mechanical power, for humans",26,3,0,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/humanpower2.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/humanpower2.html"
"DAAG","hurricNamed","Named US Atlantic Hurricanes",94,12,1,2,1,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/hurricNamed.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/hurricNamed.html"
"DAAG","intersalt","Blood pressure versus Salt; inter-population data",52,4,0,1,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/intersalt.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/intersalt.html"
"DAAG","ironslag","Iron Content Measurements",53,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/ironslag.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/ironslag.html"
"DAAG","jobs","Canadian Labour Force Summary Data (1995-96)",24,7,0,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/jobs.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/jobs.html"
"DAAG","kiwishade","Kiwi Shading Data",48,4,0,0,3,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/kiwishade.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/kiwishade.html"
"DAAG","leafshape","Full Leaf Shape Data Set",286,9,1,0,1,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/leafshape.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/leafshape.html"
"DAAG","leafshape17","Full Leaf Shape Data Set",61,8,1,0,0,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/leafshape17.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/leafshape17.html"
"DAAG","leaftemp","Leaf and Air Temperature Data",62,4,0,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/leaftemp.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/leaftemp.html"
"DAAG","leaftemp.all","Full Leaf and Air Temperature Data Set",62,9,0,0,3,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/leaftemp.all.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/leaftemp.all.html"
"DAAG","litters","Mouse Litters",20,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/litters.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/litters.html"
"DAAG","lognihills","Record times for Northern Ireland mountain running events",23,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/lognihills.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/lognihills.html"
"DAAG","Lottario","Ontario Lottery Data",39,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/Lottario.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/Lottario.html"
"DAAG","lung","Cape Fur Seal Lung Measurements",30,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/lung.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/lung.html"
"DAAG","Manitoba.lakes","The Nine Largest Lakes in Manitoba",9,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/Manitoba.lakes.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/Manitoba.lakes.html"
"DAAG","mdbAVtJtoD","Murray-Darling basin monthly temperatures",867,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/mdbAVtJtoD.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/mdbAVtJtoD.html"
"DAAG","measles","Deaths in London from measles",311,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/measles.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/measles.html"
"DAAG","medExpenses","Family Medical Expenses",33,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/medExpenses.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/medExpenses.html"
"DAAG","mifem","WHO Monica Data",1295,10,1,0,8,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/mifem.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/mifem.html"
"DAAG","mignonette","Darwin's Wild Mignonette Data",24,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/mignonette.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/mignonette.html"
"DAAG","milk","Milk Sweetness Study",17,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/milk.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/milk.html"
"DAAG","modelcars","Model Car Data",12,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/modelcars.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/modelcars.html"
"DAAG","monica","WHO Monica Data",6367,12,3,0,10,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/monica.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/monica.html"
"DAAG","moths","Moths Data",41,4,0,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/moths.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/moths.html"
"DAAG","nassCDS","Airbag and other influences on accident fatalities",26217,15,7,3,5,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/nassCDS.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/nassCDS.html"
"DAAG","nasshead","Documentation of names of columns in nass9702cor",56,3,0,3,0,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/nasshead.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/nasshead.html"
"DAAG","nihills","Record times for Northern Ireland mountain running events",23,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/nihills.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/nihills.html"
"DAAG","nsw74demo","Labour Training Evaluation Data",445,10,5,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/nsw74demo.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/nsw74demo.html"
"DAAG","nsw74psid1","Labour Training Evaluation Data",2675,10,5,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/nsw74psid1.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/nsw74psid1.html"
"DAAG","nsw74psid3","Labour Training Evaluation Data",313,10,5,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/nsw74psid3.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/nsw74psid3.html"
"DAAG","nsw74psidA","Labour Training Evaluation Data",252,10,5,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/nsw74psidA.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/nsw74psidA.html"
"DAAG","nswdemo","Labour Training Evaluation Data",722,10,5,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/nswdemo.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/nswdemo.html"
"DAAG","nswpsid1","Labour Training Evaluation Data",2787,10,5,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/nswpsid1.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/nswpsid1.html"
"DAAG","oddbooks","Measurements on 12 books",12,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/oddbooks.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/oddbooks.html"
"DAAG","orings","Challenger O-rings Data",23,4,1,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/orings.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/orings.html"
"DAAG","ozone","Ozone Data",45,11,0,0,0,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/ozone.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/ozone.html"
"DAAG","pair65","Heated Elastic Bands",9,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/pair65.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/pair65.html"
"DAAG","possum","Possum Measurements",104,14,2,0,2,0,12,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/possum.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/possum.html"
"DAAG","possumsites","Possum Sites",7,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/possumsites.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/possumsites.html"
"DAAG","poxetc","Deaths from various causes, in London from 1629 till 1881, with gaps",253,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/poxetc.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/poxetc.html"
"DAAG","primates","Primate Body and Brain Weights",5,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/primates.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/primates.html"
"DAAG","progression","Progression of Record times for track races, 1912 - 2008",227,4,0,1,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/progression.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/progression.html"
"DAAG","psid1","Labour Training Evaluation Data",2490,10,4,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/psid1.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/psid1.html"
"DAAG","psid2","Labour Training Evaluation Data",253,10,4,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/psid2.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/psid2.html"
"DAAG","psid3","Labour Training Evaluation Data",128,10,4,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/psid3.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/psid3.html"
"DAAG","races2000","Scottish Hill Races Data - 2000",77,5,0,1,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/races2000.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/races2000.html"
"DAAG","rainforest","Rainforest Data",65,7,0,0,1,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/rainforest.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/rainforest.html"
"DAAG","rareplants","Rare and Endangered Plant Species",4,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/rareplants.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/rareplants.html"
"DAAG","repPsych","Summary results from Reproducibility Study: Psychology",97,11,2,6,0,1,4,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/repPsych.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/repPsych.html"
"DAAG","rice","Genetically Modified and Wild Type Rice Data",72,7,2,0,3,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/rice.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/rice.html"
"DAAG","rockArt","Pacific Rock Art features",103,641,624,13,0,0,628,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/rockArt.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/rockArt.html"
"DAAG","roller","Lawn Roller Data",10,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/roller.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/roller.html"
"DAAG","science","School Science Survey Data",1385,7,3,0,6,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/science.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/science.html"
"DAAG","seedrates","Barley Seeding Rate Data",5,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/seedrates.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/seedrates.html"
"DAAG","socsupport","Social Support Data",95,20,3,0,8,0,12,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/socsupport.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/socsupport.html"
"DAAG","softbacks","Measurements on a Selection of Paperback Books",8,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/softbacks.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/softbacks.html"
"DAAG","sorption","sorption data set",192,14,0,0,5,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/sorption.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/sorption.html"
"DAAG","SP500close","Closing Numbers for S and P 500 Index",2780,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/SP500close.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/SP500close.html"
"DAAG","SP500W90","Closing Numbers for S and P 500 Index - First 100 Days of 1990",100,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/SP500W90.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/SP500W90.html"
"DAAG","spam7","Spam E-mail Data",4601,7,1,0,1,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/spam7.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/spam7.html"
"DAAG","stVincent","Averages by block of yields for the St. Vincent Corn data",324,8,0,0,2,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/stVincent.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/stVincent.html"
"DAAG","sugar","Sugar Data",12,2,0,0,1,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/sugar.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/sugar.html"
"DAAG","tinting","Car Window Tinting Experiment Data",182,9,3,0,4,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/tinting.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/tinting.html"
"DAAG","tomato","Root weights of tomato plants exposed to 4 different treatments",24,2,0,0,1,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/tomato.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/tomato.html"
"DAAG","toycars","Toy Cars Data",27,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/toycars.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/toycars.html"
"DAAG","vince111b","Averages by block of corn yields, for treatment 111 only",36,8,0,0,2,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/vince111b.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/vince111b.html"
"DAAG","vlt","Video Lottery Terminal Data",345,5,1,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/vlt.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/vlt.html"
"DAAG","wages1833","Wages of Lancashire Cotton Factory Workers in 1833",51,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/wages1833.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/wages1833.html"
"DAAG","whoops","Deaths from whooping cough, in London",142,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/whoops.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/whoops.html"
"DAAG","worldRecords","Record times for track and road races, at August 9th 2006",40,5,1,1,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/DAAG/worldRecords.csv","https://vincentarelbundock.github.io/Rdatasets/doc/DAAG/worldRecords.html"
"datasets","ability.cov","Ability and Intelligence Tests",6,8,0,0,0,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/ability.cov.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/ability.cov.html"
"datasets","airmiles","Passenger Miles on Commercial US Airlines, 1937-1960",24,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/airmiles.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/airmiles.html"
"datasets","AirPassengers","Monthly Airline Passenger Numbers 1949-1960",144,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/AirPassengers.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/AirPassengers.html"
"datasets","airquality","New York Air Quality Measurements",153,6,0,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/airquality.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/airquality.html"
"datasets","anscombe","Anscombe's Quartet of 'Identical' Simple Linear Regressions",11,8,1,0,0,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/anscombe.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/anscombe.html"
"datasets","attenu","The Joyner-Boore Attenuation Data",182,5,0,0,1,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/attenu.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/attenu.html"
"datasets","attitude","The Chatterjee-Price Attitude Data",30,7,0,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/attitude.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/attitude.html"
"datasets","austres","Quarterly Time Series of the Number of Australian Residents",89,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/austres.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/austres.html"
"datasets","beaver1 (beavers)","Body Temperature Series of Two Beavers",114,4,2,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/beaver1.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/beaver1.html"
"datasets","beaver2 (beavers)","Body Temperature Series of Two Beavers",100,4,2,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/beaver2.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/beaver2.html"
"datasets","BJsales","Sales Data with Leading Indicator",150,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/BJsales.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/BJsales.html"
"datasets","BJsales.lead (BJsales)","Sales Data with Leading Indicator",150,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/BJsales.lead.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/BJsales.lead.html"
"datasets","BOD","Biochemical Oxygen Demand",6,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/BOD.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/BOD.html"
"datasets","cars","Speed and Stopping Distances of Cars",50,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/cars.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/cars.html"
"datasets","ChickWeight","Weight versus age of chicks on different diets",578,4,0,0,2,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/ChickWeight.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/ChickWeight.html"
"datasets","chickwts","Chicken Weights by Feed Type",71,2,0,0,1,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/chickwts.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/chickwts.html"
"datasets","CO2","Carbon Dioxide Uptake in Grass Plants",84,5,2,0,3,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/CO2.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/CO2.html"
"datasets","co2","Mauna Loa Atmospheric CO2 Concentration",468,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/co2.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/co2.html"
"datasets","crimtab","Student's 3000 Criminals Data",924,3,0,0,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/crimtab.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/crimtab.html"
"datasets","discoveries","Yearly Numbers of Important Discoveries",100,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/discoveries.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/discoveries.html"
"datasets","DNase","Elisa assay of DNase",176,3,0,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/DNase.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/DNase.html"
"datasets","esoph","Smoking, Alcohol and (O)esophageal Cancer",88,5,0,0,3,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/esoph.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/esoph.html"
"datasets","euro","Conversion Rates of Euro Currencies",11,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/euro.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/euro.html"
"datasets","euro.cross (euro)","Conversion Rates of Euro Currencies",11,11,0,0,0,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/euro.cross.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/euro.cross.html"
"datasets","eurodist","Distances Between European Cities and Between US Cities",210,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/eurodist.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/eurodist.html"
"datasets","EuStockMarkets","Daily Closing Prices of Major European Stock Indices, 1991-1998",1860,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/EuStockMarkets.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/EuStockMarkets.html"
"datasets","faithful","Old Faithful Geyser Data",272,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/faithful.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/faithful.html"
"datasets","fdeaths (UKLungDeaths)","Monthly Deaths from Lung Diseases in the UK",72,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/fdeaths.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/fdeaths.html"
"datasets","Formaldehyde","Determination of Formaldehyde",6,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Formaldehyde.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Formaldehyde.html"
"datasets","freeny","Freeny's Revenue Data",39,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/freeny.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/freeny.html"
"datasets","freeny.x (freeny)","Freeny's Revenue Data",39,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/freeny.x.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/freeny.x.html"
"datasets","freeny.y (freeny)","Freeny's Revenue Data",39,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/freeny.y.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/freeny.y.html"
"datasets","HairEyeColor","Hair and Eye Color of Statistics Students",32,4,1,0,3,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/HairEyeColor.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/HairEyeColor.html"
"datasets","Harman23.cor","Harman Example 2.3",8,10,0,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Harman23.cor.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Harman23.cor.html"
"datasets","Harman74.cor","Harman Example 7.4",24,26,0,0,0,0,26,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Harman74.cor.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Harman74.cor.html"
"datasets","Indometh","Pharmacokinetics of Indomethacin",66,3,0,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Indometh.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Indometh.html"
"datasets","infert","Infertility after Spontaneous and Induced Abortion",248,8,1,0,1,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/infert.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/infert.html"
"datasets","InsectSprays","Effectiveness of Insect Sprays",72,2,0,0,1,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/InsectSprays.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/InsectSprays.html"
"datasets","iris","Edgar Anderson's Iris Data",150,5,0,0,1,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/iris.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/iris.html"
"datasets","iris3","Edgar Anderson's Iris Data",50,12,0,0,0,0,12,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/iris3.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/iris3.html"
"datasets","islands","Areas of the World's Major Landmasses",48,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/islands.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/islands.html"
"datasets","JohnsonJohnson","Quarterly Earnings per Johnson & Johnson Share",84,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/JohnsonJohnson.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/JohnsonJohnson.html"
"datasets","LakeHuron","Level of Lake Huron 1875-1972",98,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/LakeHuron.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/LakeHuron.html"
"datasets","ldeaths (UKLungDeaths)","Monthly Deaths from Lung Diseases in the UK",72,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/ldeaths.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/ldeaths.html"
"datasets","lh","Luteinizing Hormone in Blood Samples",48,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/lh.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/lh.html"
"datasets","LifeCycleSavings","Intercountry Life-Cycle Savings Data",50,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/LifeCycleSavings.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/LifeCycleSavings.html"
"datasets","Loblolly","Growth of Loblolly Pine Trees",84,3,0,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Loblolly.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Loblolly.html"
"datasets","longley","Longley's Economic Regression Data",16,7,0,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/longley.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/longley.html"
"datasets","lynx","Annual Canadian Lynx trappings 1821-1934",114,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/lynx.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/lynx.html"
"datasets","mdeaths (UKLungDeaths)","Monthly Deaths from Lung Diseases in the UK",72,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/mdeaths.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/mdeaths.html"
"datasets","morley","Michelson Speed of Light Data",100,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/morley.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/morley.html"
"datasets","mtcars","Motor Trend Car Road Tests",32,11,2,0,0,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/mtcars.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/mtcars.html"
"datasets","nhtemp","Average Yearly Temperatures in New Haven",60,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/nhtemp.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/nhtemp.html"
"datasets","Nile","Flow of the River Nile",100,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Nile.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Nile.html"
"datasets","nottem","Average Monthly Temperatures at Nottingham, 1920-1939",240,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/nottem.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/nottem.html"
"datasets","npk","Classical N, P, K Factorial Experiment",24,5,3,0,4,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/npk.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/npk.html"
"datasets","occupationalStatus","Occupational Status of Fathers and their Sons",64,3,0,0,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/occupationalStatus.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/occupationalStatus.html"
"datasets","Orange","Growth of Orange Trees",35,3,0,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Orange.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Orange.html"
"datasets","OrchardSprays","Potency of Orchard Sprays",64,4,0,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/OrchardSprays.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/OrchardSprays.html"
"datasets","PlantGrowth","Results from an Experiment on Plant Growth",30,2,0,0,1,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/PlantGrowth.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/PlantGrowth.html"
"datasets","precip","Annual Precipitation in US Cities",70,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/precip.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/precip.html"
"datasets","presidents","Quarterly Approval Ratings of US Presidents",120,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/presidents.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/presidents.html"
"datasets","pressure","Vapor Pressure of Mercury as a Function of Temperature",19,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/pressure.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/pressure.html"
"datasets","Puromycin","Reaction Velocity of an Enzymatic Reaction",23,3,1,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Puromycin.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Puromycin.html"
"datasets","quakes","Locations of Earthquakes off Fiji",1000,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/quakes.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/quakes.html"
"datasets","randu","Random Numbers from Congruential Generator RANDU",400,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/randu.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/randu.html"
"datasets","rivers","Lengths of Major North American Rivers",141,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/rivers.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/rivers.html"
"datasets","rock","Measurements on Petroleum Rock Samples",48,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/rock.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/rock.html"
"datasets","Seatbelts","Road Casualties in Great Britain 1969-84",192,8,1,0,0,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Seatbelts.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Seatbelts.html"
"datasets","sleep","Student's Sleep Data",20,3,1,0,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/sleep.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/sleep.html"
"datasets","stack.loss (stackloss)","Brownlee's Stack Loss Plant Data",21,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/stack.loss.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/stack.loss.html"
"datasets","stack.x (stackloss)","Brownlee's Stack Loss Plant Data",21,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/stack.x.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/stack.x.html"
"datasets","stackloss","Brownlee's Stack Loss Plant Data",21,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/stackloss.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/stackloss.html"
"datasets","state.abb (state)","US State Facts and Figures",50,1,0,1,0,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/state.abb.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/state.abb.html"
"datasets","state.area (state)","US State Facts and Figures",50,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/state.area.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/state.area.html"
"datasets","state.center (state)","US State Facts and Figures",50,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/state.center.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/state.center.html"
"datasets","state.division (state)","US State Facts and Figures",50,1,0,0,1,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/state.division.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/state.division.html"
"datasets","state.name (state)","US State Facts and Figures",50,1,0,1,0,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/state.name.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/state.name.html"
"datasets","state.region (state)","US State Facts and Figures",50,1,0,0,1,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/state.region.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/state.region.html"
"datasets","state.x77 (state)","US State Facts and Figures",50,8,0,0,0,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/state.x77.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/state.x77.html"
"datasets","sunspot.month","Monthly Sunspot Data, from 1749 to ""Present""",3177,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/sunspot.month.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/sunspot.month.html"
"datasets","sunspot.year","Yearly Sunspot Data, 1700-1988",289,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/sunspot.year.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/sunspot.year.html"
"datasets","sunspots","Monthly Sunspot Numbers, 1749-1983",2820,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/sunspots.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/sunspots.html"
"datasets","swiss","Swiss Fertility and Socioeconomic Indicators (1888) Data",47,6,0,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/swiss.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/swiss.html"
"datasets","Theoph","Pharmacokinetics of Theophylline",132,5,0,0,1,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Theoph.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Theoph.html"
"datasets","Titanic","Survival of passengers on the Titanic",32,5,3,0,4,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Titanic.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Titanic.html"
"datasets","ToothGrowth","The Effect of Vitamin C on Tooth Growth in Guinea Pigs",60,3,1,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/ToothGrowth.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/ToothGrowth.html"
"datasets","treering","Yearly Tree-Ring Data, -6000-1979",7980,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/treering.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/treering.html"
"datasets","trees","Diameter, Height and Volume for Black Cherry Trees",31,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/trees.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/trees.html"
"datasets","UCBAdmissions","Student Admissions at UC Berkeley",24,4,2,0,3,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/UCBAdmissions.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/UCBAdmissions.html"
"datasets","UKDriverDeaths","Road Casualties in Great Britain 1969-84",192,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/UKDriverDeaths.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/UKDriverDeaths.html"
"datasets","UKgas","UK Quarterly Gas Consumption",108,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/UKgas.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/UKgas.html"
"datasets","USAccDeaths","Accidental Deaths in the US 1973-1978",72,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/USAccDeaths.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/USAccDeaths.html"
"datasets","USArrests","Violent Crime Rates by US State",50,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/USArrests.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/USArrests.html"
"datasets","UScitiesD","Distances Between European Cities and Between US Cities",45,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/UScitiesD.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/UScitiesD.html"
"datasets","USJudgeRatings","Lawyers' Ratings of State Judges in the US Superior Court",43,12,0,0,0,0,12,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/USJudgeRatings.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/USJudgeRatings.html"
"datasets","USPersonalExpenditure","Personal Expenditure Data",5,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/USPersonalExpenditure.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/USPersonalExpenditure.html"
"datasets","uspop","Populations Recorded by the US Census",19,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/uspop.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/uspop.html"
"datasets","VADeaths","Death Rates in Virginia (1940)",5,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/VADeaths.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/VADeaths.html"
"datasets","volcano","Topographic Information on Auckland's Maunga Whau Volcano",87,61,0,0,0,0,61,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/volcano.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/volcano.html"
"datasets","warpbreaks","The Number of Breaks in Yarn during Weaving",54,3,1,0,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/warpbreaks.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/warpbreaks.html"
"datasets","women","Average Heights and Weights for American Women",15,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/women.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/women.html"
"datasets","WorldPhones","The World's Telephones",7,7,0,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/WorldPhones.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/WorldPhones.html"
"datasets","WWWusage","Internet Usage per Minute",100,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/datasets/WWWusage.csv","https://vincentarelbundock.github.io/Rdatasets/doc/datasets/WWWusage.html"
"dplyr","band_instruments","Band membership",3,2,1,2,0,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/dplyr/band_instruments.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dplyr/band_instruments.html"
"dplyr","band_instruments2","Band membership",3,2,1,2,0,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/dplyr/band_instruments2.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dplyr/band_instruments2.html"
"dplyr","band_members","Band membership",3,2,1,2,0,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/dplyr/band_members.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dplyr/band_members.html"
"dplyr","starwars","Starwars characters",87,11,1,8,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/dplyr/starwars.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dplyr/starwars.html"
"dplyr","storms","Storm tracks data",19537,13,0,1,1,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/dplyr/storms.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dplyr/storms.html"
"dragracer","rpdr_contep","RuPaul's Drag Race Episode-Contestant Data",2320,11,6,7,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/dragracer/rpdr_contep.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dragracer/rpdr_contep.html"
"dragracer","rpdr_contestants","RuPaul's Drag Race Contestant Data",184,5,0,3,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/dragracer/rpdr_contestants.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dragracer/rpdr_contestants.html"
"dragracer","rpdr_ep","RuPaul's Drag Race Episode Data",191,24,5,19,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/dragracer/rpdr_ep.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dragracer/rpdr_ep.html"
"drc","acidiq","Acifluorfen and diquat tested on Lemna minor.",180,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/acidiq.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/acidiq.html"
"drc","algae","Volume of algae as function of increasing concentrations of a herbicide",14,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/algae.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/algae.html"
"drc","auxins","Effect of technical grade and commercially formulated auxin herbicides",150,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/auxins.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/auxins.html"
"drc","chickweed","Germination of common chickweed (_Stellaria media_)",35,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/chickweed.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/chickweed.html"
"drc","chickweed0","Germination of common chickweed (_Stellaria media_)",34,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/chickweed0.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/chickweed0.html"
"drc","daphnids","Daphnia test",16,4,1,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/daphnids.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/daphnids.html"
"drc","decontaminants","Performance of decontaminants used in the culturing of a micro-organism",128,3,1,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/decontaminants.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/decontaminants.html"
"drc","deguelin","Deguelin applied to chrysanthemum aphis",6,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/deguelin.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/deguelin.html"
"drc","earthworms","Earthworm toxicity test",35,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/earthworms.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/earthworms.html"
"drc","etmotc","Effect of erythromycin on mixed sewage microorganisms",57,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/etmotc.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/etmotc.html"
"drc","finney71","Example from Finney (1971)",6,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/finney71.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/finney71.html"
"drc","G.aparine","Herbicide applied to Galium aparine",240,3,1,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/G.aparine.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/G.aparine.html"
"drc","germination","Germination of three crops",192,5,0,0,1,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/germination.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/germination.html"
"drc","glymet","Glyphosate and metsulfuron-methyl tested on algae.",113,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/glymet.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/glymet.html"
"drc","H.virescens","Mortality of tobacco budworms",12,4,1,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/H.virescens.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/H.virescens.html"
"drc","heartrate","Heart rate baroreflexes for rabbits",18,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/heartrate.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/heartrate.html"
"drc","leaflength","Leaf length of barley",42,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/leaflength.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/leaflength.html"
"drc","lepidium","Dose-response profile of degradation of agrochemical using lepidium",42,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/lepidium.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/lepidium.html"
"drc","lettuce","Hormesis in lettuce plants",14,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/lettuce.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/lettuce.html"
"drc","M.bahia","Effect of an effluent on the growth of mysid shrimp",40,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/M.bahia.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/M.bahia.html"
"drc","mecter","Mechlorprop and terbythylazine tested on Lemna minor",102,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/mecter.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/mecter.html"
"drc","metals","Data from heavy metal mixture experiments",543,3,0,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/metals.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/metals.html"
"drc","methionine","Weight gain for different methionine sources",9,3,0,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/methionine.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/methionine.html"
"drc","nasturtium","Dose-response profile of degradation of agrochemical using nasturtium",42,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/nasturtium.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/nasturtium.html"
"drc","O.mykiss","Test data from a 21 day fish test",70,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/O.mykiss.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/O.mykiss.html"
"drc","P.promelas","Effect of sodium pentachlorophenate on growth of fathead minnow",24,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/P.promelas.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/P.promelas.html"
"drc","RScompetition","Competition between two biotypes",49,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/RScompetition.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/RScompetition.html"
"drc","ryegrass","Effect of ferulic acid on growth of ryegrass",24,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/ryegrass.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/ryegrass.html"
"drc","S.alba","Potency of two herbicides",68,3,1,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/S.alba.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/S.alba.html"
"drc","S.capricornutum","Effect of cadmium on growth of green alga",18,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/S.capricornutum.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/S.capricornutum.html"
"drc","secalonic","Root length measurements",7,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/secalonic.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/secalonic.html"
"drc","selenium","Data from toxicology experiments with selenium",25,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/selenium.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/selenium.html"
"drc","spinach","Inhibition of photosynthesis",105,4,1,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/spinach.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/spinach.html"
"drc","terbuthylazin","The effect of terbuthylazin on growth rate",30,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/terbuthylazin.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/terbuthylazin.html"
"drc","vinclozolin","Vinclozolin from AR in vitro assay",53,3,0,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/drc/vinclozolin.csv","https://vincentarelbundock.github.io/Rdatasets/doc/drc/vinclozolin.html"
"dslabs","admissions","Gender bias among graduate school admissions to UC Berkeley.",12,4,1,2,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/admissions.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/admissions.html"
"dslabs","brca","Breast Cancer Wisconsin Diagnostic Dataset from UCI Machine Learning Repository",569,31,1,0,1,0,30,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/brca.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/brca.html"
"dslabs","brexit_polls","Brexit Poll Data",127,9,1,0,2,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/brexit_polls.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/brexit_polls.html"
"dslabs","death_prob","2015 US Period Life Table",240,3,1,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/death_prob.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/death_prob.html"
"dslabs","divorce_margarine","Divorce rate and margarine consumption data",10,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/divorce_margarine.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/divorce_margarine.html"
"dslabs","gapminder","Gapminder Data",10545,9,0,0,3,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/gapminder.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/gapminder.html"
"dslabs","greenhouse_gases","Greenhouse gas concentrations over 2000 years",300,3,0,1,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/greenhouse_gases.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/greenhouse_gases.html"
"dslabs","heights","Self-reported Heights in Inches",1050,2,1,0,1,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/heights.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/heights.html"
"dslabs","historic_co2","Atmospheric carbon dioxide concentration over 800,000 years",694,3,1,1,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/historic_co2.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/historic_co2.html"
"dslabs","mice_weights (mice_weigths)","Mice weights",780,7,3,0,4,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/mice_weights.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/mice_weights.html"
"dslabs","movielens","Movie ratings",100004,7,0,1,1,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/movielens.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/movielens.html"
"dslabs","murders","US gun murders by state for 2010",51,5,0,2,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/murders.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/murders.html"
"dslabs","na_example","Count data with some missing values",1000,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/na_example.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/na_example.html"
"dslabs","nyc_regents_scores","NYC Regents exams scores 2010",102,6,0,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/nyc_regents_scores.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/nyc_regents_scores.html"
"dslabs","oecd (gapminder)","Gapminder Data",35,1,0,1,0,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/oecd.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/oecd.html"
"dslabs","olive","Italian olive",572,10,0,0,2,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/olive.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/olive.html"
"dslabs","opec (gapminder)","Gapminder Data",12,1,0,1,0,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/opec.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/opec.html"
"dslabs","outlier_example","Adult male heights in feet with outliers",500,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/outlier_example.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/outlier_example.html"
"dslabs","polls_2008","Poll data for popular vote in 2008 presidential election",131,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/polls_2008.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/polls_2008.html"
"dslabs","polls_us_election_2016","Fivethirtyeight 2016 Poll Data",4208,15,0,1,3,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/polls_us_election_2016.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/polls_us_election_2016.html"
"dslabs","pr_death_counts (pr-death-counts)","Puerto Rico daily mortality",1201,2,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/pr_death_counts.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/pr_death_counts.html"
"dslabs","raw_data_research_funding_rates","Gender bias in research funding in the Netherlands",1,1,0,1,0,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/raw_data_research_funding_rates.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/raw_data_research_funding_rates.html"
"dslabs","reported_heights","Self-reported Heights",1095,3,1,3,0,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/reported_heights.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/reported_heights.html"
"dslabs","research_funding_rates","Gender bias in research funding in the Netherlands",9,10,0,1,0,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/research_funding_rates.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/research_funding_rates.html"
"dslabs","results_us_election_2016 (polls_us_election_2016)","Fivethirtyeight 2016 Poll Data",51,5,0,1,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/results_us_election_2016.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/results_us_election_2016.html"
"dslabs","sentiment_counts (trump_tweets)","Trump Tweets from2009 to 2017",11,3,0,1,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/sentiment_counts.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/sentiment_counts.html"
"dslabs","stars","Physical Properties of Stars",96,4,0,1,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/stars.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/stars.html"
"dslabs","temp_carbon","Global temperature anomaly and carbon emissions, 1751-2018",268,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/temp_carbon.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/temp_carbon.html"
"dslabs","tissue_gene_expression","Gene expression profiles for 189 biological samples taken from seven different tissue types.",189,501,0,0,1,0,500,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/tissue_gene_expression.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/tissue_gene_expression.html"
"dslabs","trump_tweets","Trump Tweets from2009 to 2017",20761,8,0,4,0,1,2,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/trump_tweets.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/trump_tweets.html"
"dslabs","us_contagious_diseases","Contagious disease data for US states",16065,6,0,0,2,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/dslabs/us_contagious_diseases.csv","https://vincentarelbundock.github.io/Rdatasets/doc/dslabs/us_contagious_diseases.html"
"Ecdat","Accident","Ship Accidents",40,5,1,0,3,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Accident.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Accident.html"
"Ecdat","AccountantsAuditorsPct","Accountants and Auditors in the US 1850-2016",31,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/AccountantsAuditorsPct.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/AccountantsAuditorsPct.html"
"Ecdat","Airline","Cost for U.S. Airlines",90,6,0,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Airline.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Airline.html"
"Ecdat","Airq","Air Quality for Californian Metropolitan Areas",30,6,1,0,1,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Airq.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Airq.html"
"Ecdat","bankingCrises","Countries in Banking Crises",211,71,69,0,0,0,71,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/bankingCrises.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/bankingCrises.html"
"Ecdat","Benefits","Unemployment of Blue Collar Workers",4877,18,9,0,11,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Benefits.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Benefits.html"
"Ecdat","Bids","Bids Received By U.S. Firms",126,12,5,0,0,0,12,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Bids.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Bids.html"
"Ecdat","breaches","Cyber Security Breaches",1055,13,0,2,5,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/breaches.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/breaches.html"
"Ecdat","BudgetFood","Budget Share of Food for Spanish Households",23972,6,1,0,1,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/BudgetFood.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/BudgetFood.html"
"Ecdat","BudgetItaly","Budget Shares for Italian Households",1729,11,0,0,0,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/BudgetItaly.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/BudgetItaly.html"
"Ecdat","BudgetUK","Budget Shares of British Households",1519,10,1,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/BudgetUK.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/BudgetUK.html"
"Ecdat","Bwages","Wages in Belgium",1472,4,0,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Bwages.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Bwages.html"
"Ecdat","Capm","Stock Market Data",516,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Capm.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Capm.html"
"Ecdat","Car","Stated Preferences for Car Choice",4654,70,13,0,13,0,57,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Car.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Car.html"
"Ecdat","Caschool","The California Test Score Data Set",420,17,1,0,3,0,14,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Caschool.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Caschool.html"
"Ecdat","Catsup","Choice of Brand for Catsup",2798,14,8,0,1,0,13,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Catsup.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Catsup.html"
"Ecdat","Cigar","Cigarette Consumption",1380,9,0,0,0,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Cigar.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Cigar.html"
"Ecdat","Cigarette","The Cigarette Consumption Panel Data Set",528,9,0,0,1,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Cigarette.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Cigarette.html"
"Ecdat","Clothing","Sales Data of Men's Fashion Stores",400,13,0,0,0,0,13,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Clothing.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Clothing.html"
"Ecdat","Computers","Prices of Personal Computers",6259,10,3,0,3,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Computers.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Computers.html"
"Ecdat","Consumption","Quarterly Data on Consumption and Expenditure",200,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Consumption.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Consumption.html"
"Ecdat","coolingFromNuclearWar","Global cooling from a nuclear war",4,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/coolingFromNuclearWar.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/coolingFromNuclearWar.html"
"Ecdat","CPSch3","Earnings from the Current Population Survey",11130,3,1,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/CPSch3.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/CPSch3.html"
"Ecdat","Cracker","Choice of Brand for Crackers",3292,14,8,0,1,0,13,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Cracker.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Cracker.html"
"Ecdat","CRANpackages","Growth of CRAN",29,4,0,0,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/CRANpackages.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/CRANpackages.html"
"Ecdat","Crime","Crime in North Carolina",630,24,1,0,2,0,22,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Crime.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Crime.html"
"Ecdat","CRSPday","Daily Returns from the CRSP Database",2528,7,0,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/CRSPday.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/CRSPday.html"
"Ecdat","CRSPmon","Monthly Returns from the CRSP Database",360,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/CRSPmon.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/CRSPmon.html"
"Ecdat","Diamond","Pricing the C's of Diamond Stones",308,5,0,0,3,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Diamond.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Diamond.html"
"Ecdat","DM","DM Dollar Exchange Rate",778,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/DM.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/DM.html"
"Ecdat","Doctor","Number of Doctor Visits",485,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Doctor.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Doctor.html"
"Ecdat","DoctorAUS","Doctor Visits in Australia",5190,15,1,0,2,0,13,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/DoctorAUS.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/DoctorAUS.html"
"Ecdat","DoctorContacts","Contacts With Medical Doctor",20186,15,5,0,2,4,9,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/DoctorContacts.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/DoctorContacts.html"
"Ecdat","Earnings","Earnings for Three Age Groups",4266,2,0,0,1,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Earnings.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Earnings.html"
"Ecdat","Electricity","Cost Function for Electricity Producers",158,8,0,0,0,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Electricity.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Electricity.html"
"Ecdat","Fair","Extramarital Affairs Data",601,9,2,0,2,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Fair.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Fair.html"
"Ecdat","Fatality","Drunk Driving Laws and Traffic Deaths",336,10,2,0,2,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Fatality.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Fatality.html"
"Ecdat","Fishing","Choice of Fishing Mode",1182,12,0,0,1,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Fishing.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Fishing.html"
"Ecdat","Forward","Exchange Rates of US Dollar Against Other Currencies",276,9,0,0,0,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Forward.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Forward.html"
"Ecdat","FriendFoe","Data from the Television Game Show Friend Or Foe ?",227,13,7,0,8,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/FriendFoe.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/FriendFoe.html"
"Ecdat","Garch","Daily Observations on Exchange Rates of the US Dollar Against Other Currencies",1867,8,0,1,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Garch.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Garch.html"
"Ecdat","Gasoline","Gasoline Consumption",342,6,0,0,1,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Gasoline.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Gasoline.html"
"Ecdat","Griliches","Wage Data",758,20,6,0,6,0,14,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Griliches.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Griliches.html"
"Ecdat","Grunfeld","Grunfeld Investment Data",200,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Grunfeld.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Grunfeld.html"
"Ecdat","HC","Heating and Cooling System Choice in Newly Built Houses in California",250,18,0,0,1,0,17,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/HC.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/HC.html"
"Ecdat","Hdma","The Boston HMDA Data Set",2381,13,7,0,6,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Hdma.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Hdma.html"
"Ecdat","Heating","Heating System Choice in California Houses",900,21,0,0,2,0,19,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Heating.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Heating.html"
"Ecdat","Hedonic","Hedonic Prices of Census Tracts in Boston",506,15,1,0,1,0,14,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Hedonic.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Hedonic.html"
"Ecdat","HHSCyberSecurityBreaches","Cybersecurity breaches reported to the US Department of Health and Human Services",1151,9,1,2,4,1,1,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/HHSCyberSecurityBreaches.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/HHSCyberSecurityBreaches.html"
"Ecdat","HI","Health Insurance and Hours Worked By Wives",22272,13,4,0,7,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/HI.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/HI.html"
"Ecdat","Hmda","The Boston HMDA Data Set",2381,13,7,0,6,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Hmda.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Hmda.html"
"Ecdat","Housing","Sales Prices of Houses in the City of Windsor",546,12,6,0,6,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Housing.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Housing.html"
"Ecdat","Hstarts","Housing Starts",168,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Hstarts.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Hstarts.html"
"Ecdat","Icecream","Ice Cream Consumption",30,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Icecream.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Icecream.html"
"Ecdat","incidents.byCountryYr","Global Terrorism Database yearly summaries",10200,3,0,0,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/incidents.byCountryYr.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/incidents.byCountryYr.html"
"Ecdat","incomeInequality","Income Inequality in the US",66,22,0,0,0,0,22,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/incomeInequality.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/incomeInequality.html"
"Ecdat","IncomeUK","Seasonally Unadjusted Quarterly Data on Disposable Income and Expenditure",58,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/IncomeUK.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/IncomeUK.html"
"Ecdat","Irates","Monthly Interest Rates",531,10,0,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Irates.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Irates.html"
"Ecdat","Journals","Economic Journals Data Set",180,10,1,0,4,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Journals.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Journals.html"
"Ecdat","Kakadu","Willingness to Pay for the Preservation of the Kakadu National Park",1827,22,5,0,6,0,16,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Kakadu.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Kakadu.html"
"Ecdat","Ketchup","Choice of Brand for Ketchup",4956,7,0,0,1,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Ketchup.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Ketchup.html"
"Ecdat","Klein","Klein's Model I",22,9,0,0,0,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Klein.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Klein.html"
"Ecdat","LaborSupply","Wages and Hours Worked",5320,7,1,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/LaborSupply.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/LaborSupply.html"
"Ecdat","Labour","Belgian Firms",569,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Labour.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Labour.html"
"Ecdat","Longley","The Longley Data",16,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Longley.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Longley.html"
"Ecdat","LT","Dollar Sterling Exchange Rate",200,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/LT.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/LT.html"
"Ecdat","Macrodat","Macroeconomic Time Series for the United States",168,7,0,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Macrodat.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Macrodat.html"
"Ecdat","Males","Wages and Education of Young Males",4360,12,3,0,7,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Males.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Males.html"
"Ecdat","ManufCost","Manufacturing Costs",25,9,0,0,0,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/ManufCost.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/ManufCost.html"
"Ecdat","Mathlevel","Level of Calculus Attained for Students Taking Advanced Micro-economics",609,8,2,0,4,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Mathlevel.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Mathlevel.html"
"Ecdat","MCAS","The Massachusetts Test Score Data Set",220,17,0,0,2,0,15,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/MCAS.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/MCAS.html"
"Ecdat","MedExp","Structure of Demand for Medical Care",5574,15,5,0,6,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/MedExp.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/MedExp.html"
"Ecdat","Metal","Production for SIC 33",27,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Metal.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Metal.html"
"Ecdat","Mishkin","Inflation and Interest Rates",491,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Mishkin.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Mishkin.html"
"Ecdat","Mode","Mode Choice",453,9,0,0,1,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Mode.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Mode.html"
"Ecdat","ModeChoice","Data to Study Travel Mode Choice",840,7,1,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/ModeChoice.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/ModeChoice.html"
"Ecdat","Mofa","International Expansion of U.S. MOFAs (majority-owned Foreign Affiliates in Fire (finance, Insurance and Real Estate)",50,5,0,0,1,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Mofa.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Mofa.html"
"Ecdat","Money","Money, GDP and Interest Rate in Canada",128,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Money.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Money.html"
"Ecdat","MoneyUS","Macroeconomic Series for the United States",164,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/MoneyUS.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/MoneyUS.html"
"Ecdat","Mpyr","Money, National Product and Interest Rate",90,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Mpyr.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Mpyr.html"
"Ecdat","Mroz","Labor Supply Data",753,18,2,0,2,0,16,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Mroz.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Mroz.html"
"Ecdat","MunExp","Municipal Expenditure Data",2385,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/MunExp.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/MunExp.html"
"Ecdat","MW","Growth of Disposable Income and Treasury Bill Rate",50,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/MW.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/MW.html"
"Ecdat","NaturalPark","Willingness to Pay for the Preservation of the Alentejo Natural Park",312,7,1,0,2,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/NaturalPark.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/NaturalPark.html"
"Ecdat","Nerlove","Cost Function for Electricity Producers, 1955",159,8,0,0,0,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Nerlove.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Nerlove.html"
"Ecdat","nkill.byCountryYr","Global Terrorism Database yearly summaries",204,50,0,0,0,0,50,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/nkill.byCountryYr.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/nkill.byCountryYr.html"
"Ecdat","nonEnglishNames","Names with Character Set Problems",11,2,0,2,0,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/nonEnglishNames.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/nonEnglishNames.html"
"Ecdat","nuclearWeaponStates","Nations with nuclear weapons",9,17,1,3,0,0,12,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/nuclearWeaponStates.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/nuclearWeaponStates.html"
"Ecdat","OCC1950","Evolution of occupational distribution in the US",281,31,0,0,0,0,31,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/OCC1950.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/OCC1950.html"
"Ecdat","OFP","Visits to Physician Office",4406,19,7,0,8,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/OFP.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/OFP.html"
"Ecdat","Oil","Oil Investment",53,11,0,0,0,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Oil.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Oil.html"
"Ecdat","Orange","The Orange Juice Data Set",642,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Orange.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Orange.html"
"Ecdat","Participation","Labor Force Participation",872,7,2,0,2,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Participation.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Participation.html"
"Ecdat","PatentsHGH","Dynamic Relation Between Patents and R&D",1730,18,1,0,1,0,17,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/PatentsHGH.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/PatentsHGH.html"
"Ecdat","PatentsRD","Patents, R&D and Technological Spillovers for a Panel of Firms",1629,7,0,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/PatentsRD.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/PatentsRD.html"
"Ecdat","PE","Price and Earnings Index",132,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/PE.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/PE.html"
"Ecdat","politicalKnowledge","Political knowledge in the US and Europe",4,12,0,1,0,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/politicalKnowledge.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/politicalKnowledge.html"
"Ecdat","Pound","Pound-dollar Exchange Rate",778,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Pound.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Pound.html"
"Ecdat","PPP","Exchange Rates and Price Indices for France and Italy",186,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/PPP.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/PPP.html"
"Ecdat","Pricing","Returns of Size-based Portfolios",418,12,0,0,0,0,12,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Pricing.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Pricing.html"
"Ecdat","Produc","Us States Production",816,10,0,0,1,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Produc.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Produc.html"
"Ecdat","PSID","Panel Survey of Income Dynamics",4856,8,0,0,1,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/PSID.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/PSID.html"
"Ecdat","RetSchool","Return to Schooling",5225,17,9,0,0,0,17,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/RetSchool.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/RetSchool.html"
"Ecdat","Schooling","Wages and Schooling",3010,28,16,0,17,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Schooling.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Schooling.html"
"Ecdat","Solow","Solow's Technological Change Data",41,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Solow.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Solow.html"
"Ecdat","Somerville","Visits to Lake Somerville",659,8,2,0,2,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Somerville.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Somerville.html"
"Ecdat","SP500","Returns on Standard & Poor's 500 Index",2783,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/SP500.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/SP500.html"
"Ecdat","Star","Effects on Learning of Small Class Sizes",5748,8,2,0,4,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Star.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Star.html"
"Ecdat","Strike","Strike Duration Data",62,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Strike.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Strike.html"
"Ecdat","StrikeDur","Strikes Duration",566,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/StrikeDur.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/StrikeDur.html"
"Ecdat","StrikeNb","Number of Strikes in Us Manufacturing",108,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/StrikeNb.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/StrikeNb.html"
"Ecdat","SumHes","The Penn Table",3250,7,2,0,3,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/SumHes.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/SumHes.html"
"Ecdat","Tbrate","Interest Rate, GDP and Inflation",188,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Tbrate.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Tbrate.html"
"Ecdat","terrorism","Global Terrorism Database yearly summaries",51,25,0,1,1,0,23,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/terrorism.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/terrorism.html"
"Ecdat","Tobacco","Households Tobacco Budget Share",2724,9,0,0,2,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Tobacco.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Tobacco.html"
"Ecdat","Train","Stated Preferences for Train Traveling",2929,11,1,0,1,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Train.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Train.html"
"Ecdat","TranspEq","Statewide Data on Transportation Equipment Manufacturing",25,5,0,0,1,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/TranspEq.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/TranspEq.html"
"Ecdat","Treatment","Evaluating Treatment Effect of Training on Earnings",2675,10,4,0,1,4,5,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Treatment.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Treatment.html"
"Ecdat","Tuna","Choice of Brand for Tuna",13705,8,0,0,1,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Tuna.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Tuna.html"
"Ecdat","UnempDur","Unemployment Duration",3343,11,5,0,1,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/UnempDur.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/UnempDur.html"
"Ecdat","Unemployment","Unemployment Duration",452,12,9,0,5,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Unemployment.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Unemployment.html"
"Ecdat","University","Provision of University Teaching and Research",62,17,0,0,0,0,17,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/University.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/University.html"
"Ecdat","USclassifiedDocuments","Official Secrecy of the United States Government",29,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/USclassifiedDocuments.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/USclassifiedDocuments.html"
"Ecdat","USFinanceIndustry","US Finance Industry Profits",84,7,0,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/USFinanceIndustry.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/USFinanceIndustry.html"
"Ecdat","USGDPpresidents","US GDP per capita with presidents and wars",265,20,1,0,3,0,17,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/USGDPpresidents.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/USGDPpresidents.html"
"Ecdat","USincarcerations","US incarcerations 1925 onward",95,7,0,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/USincarcerations.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/USincarcerations.html"
"Ecdat","USnewspapers","US newspaper revenue 1956 - 2020",65,15,0,0,0,0,15,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/USnewspapers.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/USnewspapers.html"
"Ecdat","USPS","US Postal Service",233,18,0,0,0,0,18,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/USPS.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/USPS.html"
"Ecdat","USstateAbbreviations","Standard abbreviations for states of the United States",76,10,0,10,0,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/USstateAbbreviations.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/USstateAbbreviations.html"
"Ecdat","UStaxWords","Number of Words in US Tax Law",7,10,0,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/UStaxWords.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/UStaxWords.html"
"Ecdat","VietNamH","Medical Expenses in Vietnam (household Level)",5999,11,3,0,4,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/VietNamH.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/VietNamH.html"
"Ecdat","VietNamI","Medical Expenses in Vietnam (individual Level)",27765,12,4,0,1,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/VietNamI.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/VietNamI.html"
"Ecdat","Wages","Panel Data of Individual Wages",4165,12,8,0,7,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Wages.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Wages.html"
"Ecdat","Wages1","Wages, Experience and Schooling",3294,4,1,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Wages1.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Wages1.html"
"Ecdat","Workinghours","Wife Working Hours",3382,12,3,0,1,0,11,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Workinghours.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Workinghours.html"
"Ecdat","Yen","Yen-dollar Exchange Rate",778,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Yen.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Yen.html"
"Ecdat","Yogurt","Choice of Brand for Yogurts",2412,10,4,0,1,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/Ecdat/Yogurt.csv","https://vincentarelbundock.github.io/Rdatasets/doc/Ecdat/Yogurt.html"
"evir","bmw","Daily Log Returns on BMW Share Price",6146,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/evir/bmw.csv","https://vincentarelbundock.github.io/Rdatasets/doc/evir/bmw.html"
"evir","danish","Danish Fire Insurance Claims",2167,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/evir/danish.csv","https://vincentarelbundock.github.io/Rdatasets/doc/evir/danish.html"
"evir","nidd.annual","The River Nidd Data",35,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/evir/nidd.annual.csv","https://vincentarelbundock.github.io/Rdatasets/doc/evir/nidd.annual.html"
"evir","nidd.thresh","The River Nidd Data",154,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/evir/nidd.thresh.csv","https://vincentarelbundock.github.io/Rdatasets/doc/evir/nidd.thresh.html"
"evir","siemens","Daily Log Returns on Siemens Share Price",6146,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/evir/siemens.csv","https://vincentarelbundock.github.io/Rdatasets/doc/evir/siemens.html"
"evir","sp.raw","SP Data to June 1993",8415,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/evir/sp.raw.csv","https://vincentarelbundock.github.io/Rdatasets/doc/evir/sp.raw.html"
"evir","spto87","SP Return Data to October 1987",6985,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/evir/spto87.csv","https://vincentarelbundock.github.io/Rdatasets/doc/evir/spto87.html"
"forecast","gas","Australian monthly gas production",476,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/forecast/gas.csv","https://vincentarelbundock.github.io/Rdatasets/doc/forecast/gas.html"
"forecast","gold","Daily morning gold prices",1108,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/forecast/gold.csv","https://vincentarelbundock.github.io/Rdatasets/doc/forecast/gold.html"
"forecast","taylor","Half-hourly electricity demand",4032,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/forecast/taylor.csv","https://vincentarelbundock.github.io/Rdatasets/doc/forecast/taylor.html"
"forecast","wineind","Australian total wine sales",176,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/forecast/wineind.csv","https://vincentarelbundock.github.io/Rdatasets/doc/forecast/wineind.html"
"forecast","woolyrnq","Quarterly production of woollen yarn in Australia",119,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/forecast/woolyrnq.csv","https://vincentarelbundock.github.io/Rdatasets/doc/forecast/woolyrnq.html"
"fpp2","a10","Monthly anti-diabetic drug subsidy in Australia from 1991 to 2008.",204,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/a10.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/a10.html"
"fpp2","arrivals","International Arrivals to Australia",127,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/arrivals.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/arrivals.html"
"fpp2","ausair","Air Transport Passengers Australia",47,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/ausair.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/ausair.html"
"fpp2","ausbeer","Quarterly Australian Beer production",218,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/ausbeer.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/ausbeer.html"
"fpp2","auscafe","Monthly expenditure on eating out in Australia",426,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/auscafe.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/auscafe.html"
"fpp2","austa","International visitors to Australia",36,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/austa.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/austa.html"
"fpp2","austourists","International Tourists to Australia: Total visitor nights.",68,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/austourists.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/austourists.html"
"fpp2","calls","Call volume for a large North American bank",27716,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/calls.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/calls.html"
"fpp2","debitcards","Retail debit card usage in Iceland.",164,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/debitcards.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/debitcards.html"
"fpp2","departures","Total monthly departures from Australia",498,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/departures.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/departures.html"
"fpp2","elecdaily","Half-hourly and daily electricity demand for Victoria, Australia, in 2014",365,3,1,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/elecdaily.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/elecdaily.html"
"fpp2","elecdemand","Half-hourly and daily electricity demand for Victoria, Australia, in 2014",17520,3,1,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/elecdemand.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/elecdemand.html"
"fpp2","elecequip","Electrical equipment manufactured in the Euro area.",195,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/elecequip.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/elecequip.html"
"fpp2","elecsales","Electricity sales to residential customers in South Australia.",20,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/elecsales.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/elecsales.html"
"fpp2","euretail","Quarterly retail trade: Euro area.",64,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/euretail.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/euretail.html"
"fpp2","gasoline","US finished motor gasoline product supplied.",1355,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/gasoline.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/gasoline.html"
"fpp2","goog","Daily closing stock prices of Google Inc",1000,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/goog.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/goog.html"
"fpp2","goog200","Daily closing stock prices of Google Inc",200,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/goog200.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/goog200.html"
"fpp2","guinearice","Rice production (Guinea)",42,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/guinearice.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/guinearice.html"
"fpp2","h02","Monthly corticosteroid drug subsidy in Australia from 1991 to 2008.",204,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/h02.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/h02.html"
"fpp2","hyndsight","Daily pageviews for the Hyndsight blog. 30 April 2014 to 29 April 2015.",365,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/hyndsight.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/hyndsight.html"
"fpp2","insurance","Insurance quotations and advertising expenditure.",40,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/insurance.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/insurance.html"
"fpp2","livestock","Livestock (sheep) in Asia, 1961-2007.",47,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/livestock.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/livestock.html"
"fpp2","marathon","Boston marathon winning times since 1897",120,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/marathon.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/marathon.html"
"fpp2","maxtemp","Maximum annual temperatures at Moorabbin Airport, Melbourne",46,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/maxtemp.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/maxtemp.html"
"fpp2","melsyd","Total weekly air passenger numbers on Ansett airline flights between Melbourne and Sydney, 1987-1992.",283,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/melsyd.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/melsyd.html"
"fpp2","mens400","Winning times in Olympic men's 400m track final. 1896-2016.",31,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/mens400.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/mens400.html"
"fpp2","oil","Annual oil production in Saudi Arabia",49,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/oil.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/oil.html"
"fpp2","prison","prison",48,32,0,0,0,0,32,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/prison.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/prison.html"
"fpp2","prisonLF","prison",1536,5,2,0,3,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/prisonLF.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/prisonLF.html"
"fpp2","qauselec","Quarterly Australian Electricity production",218,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/qauselec.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/qauselec.html"
"fpp2","qcement","Quarterly Australian Portland Cement production",233,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/qcement.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/qcement.html"
"fpp2","qgas","Quarterly Australian Gas Production",218,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/qgas.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/qgas.html"
"fpp2","sunspotarea","Annual average sunspot area (1875-2015)",141,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/sunspotarea.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/sunspotarea.html"
"fpp2","uschange","Growth rates of personal consumption and personal income in the USA.",187,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/uschange.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/uschange.html"
"fpp2","usmelec","Electricity monthly total net generation. January 1973 - June 2013.",486,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/usmelec.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/usmelec.html"
"fpp2","visnights","Quarterly visitor nights for various regions of Australia.",76,20,0,0,0,0,20,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/visnights.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/visnights.html"
"fpp2","wmurders","Annual female murder rate (per 100,000 standard population) in the USA. 1950-2004.",55,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp2/wmurders.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp2/wmurders.html"
"fpp3","aus_accommodation","Australian accommodation data",592,5,0,1,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/aus_accommodation.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/aus_accommodation.html"
"fpp3","aus_airpassengers","Air Transport Passengers Australia",47,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/aus_airpassengers.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/aus_airpassengers.html"
"fpp3","aus_arrivals","International Arrivals to Australia",508,3,0,1,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/aus_arrivals.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/aus_arrivals.html"
"fpp3","aus_births","Australian births data",4512,3,0,1,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/aus_births.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/aus_births.html"
"fpp3","aus_fertility","Australian fertility rates",15120,4,0,2,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/aus_fertility.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/aus_fertility.html"
"fpp3","aus_inbound","Monthly short term (<1 year) visitor arrivals to Australia",20748,4,0,2,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/aus_inbound.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/aus_inbound.html"
"fpp3","aus_migration","Australian migration data",1360,3,0,1,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/aus_migration.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/aus_migration.html"
"fpp3","aus_mortality","Australian mortality data",7740,5,0,2,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/aus_mortality.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/aus_mortality.html"
"fpp3","aus_outbound","Monthly short term (<1 year) resident departures in Australia",11700,4,0,2,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/aus_outbound.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/aus_outbound.html"
"fpp3","aus_tobacco","Australian cigarette and tobacco expenditure",1232,3,0,1,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/aus_tobacco.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/aus_tobacco.html"
"fpp3","aus_vehicle_sales","Australian vehicle sales",864,3,0,1,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/aus_vehicle_sales.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/aus_vehicle_sales.html"
"fpp3","bank_calls","Call volume for a large North American commercial bank",27716,2,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/bank_calls.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/bank_calls.html"
"fpp3","boston_marathon","Boston marathon winning times since 1897",265,5,0,2,1,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/boston_marathon.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/boston_marathon.html"
"fpp3","canadian_gas","Monthly Canadian gas production",542,2,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/canadian_gas.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/canadian_gas.html"
"fpp3","guinea_rice","Rice production (Guinea)",42,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/guinea_rice.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/guinea_rice.html"
"fpp3","insurance","Insurance quotations and advertising expenditure",40,3,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/insurance.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/insurance.html"
"fpp3","melb_walkers","Average daily total pedestrian count in Melbourne",1976,2,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/melb_walkers.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/melb_walkers.html"
"fpp3","nsw_offences","Monthly offences in NSW",7308,3,0,1,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/nsw_offences.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/nsw_offences.html"
"fpp3","ny_childcare","New York childcare data",412,2,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/ny_childcare.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/ny_childcare.html"
"fpp3","otexts_views","OTexts page views",1561,2,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/otexts_views.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/otexts_views.html"
"fpp3","prices","Price series for various commodities",198,7,0,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/prices.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/prices.html"
"fpp3","souvenirs","Sales for a souvenir shop",84,2,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/souvenirs.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/souvenirs.html"
"fpp3","us_change","Percentage changes in economic variables in the USA.",198,6,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/us_change.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/us_change.html"
"fpp3","us_employment","US monthly employment data",143412,4,0,2,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/us_employment.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/us_employment.html"
"fpp3","us_gasoline","US finished motor gasoline product supplied.",1355,2,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/fpp3/us_gasoline.csv","https://vincentarelbundock.github.io/Rdatasets/doc/fpp3/us_gasoline.html"
"gap","hg18","Chromosomal lengths for build 36",24,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/gap/hg18.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gap/hg18.html"
"gap","hg19","Chromosomal lengths for build 37",24,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/gap/hg19.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gap/hg19.html"
"gap","hg38","Chromosomal lengths for build 38",24,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/gap/hg38.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gap/hg38.html"
"gapminder","continent_colors","Gapminder color schemes.",5,1,0,1,0,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/gapminder/continent_colors.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gapminder/continent_colors.html"
"gapminder","country_codes","Country codes",187,3,0,2,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/gapminder/country_codes.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gapminder/country_codes.html"
"gapminder","country_colors","Gapminder color schemes.",142,1,0,1,0,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/gapminder/country_colors.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gapminder/country_colors.html"
"gapminder","gapminder","Gapminder data",1704,6,0,0,2,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/gapminder/gapminder.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gapminder/gapminder.html"
"gapminder","gapminder_unfiltered","Gapminder data, unfiltered.",3313,6,0,0,2,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/gapminder/gapminder_unfiltered.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gapminder/gapminder_unfiltered.html"
"geepack","dietox","Growth curves of pigs in a 3x3 factorial experiment",861,8,0,0,4,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/geepack/dietox.csv","https://vincentarelbundock.github.io/Rdatasets/doc/geepack/dietox.html"
"geepack","koch","Ordinal Data from Koch",288,4,1,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/geepack/koch.csv","https://vincentarelbundock.github.io/Rdatasets/doc/geepack/koch.html"
"geepack","muscatine","Data on Obesity from the Muscatine Coronary Risk Factor Study.",14568,7,3,0,2,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/geepack/muscatine.csv","https://vincentarelbundock.github.io/Rdatasets/doc/geepack/muscatine.html"
"geepack","ohio","Ohio Children Wheeze Status",2148,4,2,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/geepack/ohio.csv","https://vincentarelbundock.github.io/Rdatasets/doc/geepack/ohio.html"
"geepack","respdis","Clustered Ordinal Respiratory Disorder",111,5,1,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/geepack/respdis.csv","https://vincentarelbundock.github.io/Rdatasets/doc/geepack/respdis.html"
"geepack","respiratory","Data from a clinical trial comparing two treatments for a respiratory illness",444,8,5,0,2,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/geepack/respiratory.csv","https://vincentarelbundock.github.io/Rdatasets/doc/geepack/respiratory.html"
"geepack","seizure","Epiliptic Seizures",59,7,1,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/geepack/seizure.csv","https://vincentarelbundock.github.io/Rdatasets/doc/geepack/seizure.html"
"geepack","sitka89","Growth of Sitka Spruce Trees",632,4,1,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/geepack/sitka89.csv","https://vincentarelbundock.github.io/Rdatasets/doc/geepack/sitka89.html"
"geepack","spruce","Log-size of 79 Sitka spruce trees",1027,6,1,0,1,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/geepack/spruce.csv","https://vincentarelbundock.github.io/Rdatasets/doc/geepack/spruce.html"
"ggplot2","diamonds","Prices of over 50,000 round cut diamonds",53940,10,0,0,3,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/ggplot2/diamonds.csv","https://vincentarelbundock.github.io/Rdatasets/doc/ggplot2/diamonds.html"
"ggplot2","economics","US economic time series",574,6,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/ggplot2/economics.csv","https://vincentarelbundock.github.io/Rdatasets/doc/ggplot2/economics.html"
"ggplot2","economics_long","US economic time series",2870,4,0,1,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/ggplot2/economics_long.csv","https://vincentarelbundock.github.io/Rdatasets/doc/ggplot2/economics_long.html"
"ggplot2","faithfuld","2d density estimate of Old Faithful data",5625,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/ggplot2/faithfuld.csv","https://vincentarelbundock.github.io/Rdatasets/doc/ggplot2/faithfuld.html"
"ggplot2","luv_colours","'colors()' in Luv space",657,4,0,1,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/ggplot2/luv_colours.csv","https://vincentarelbundock.github.io/Rdatasets/doc/ggplot2/luv_colours.html"
"ggplot2","midwest","Midwest demographics",437,28,1,3,0,0,25,"https://vincentarelbundock.github.io/Rdatasets/csv/ggplot2/midwest.csv","https://vincentarelbundock.github.io/Rdatasets/doc/ggplot2/midwest.html"
"ggplot2","mpg","Fuel economy data from 1999 to 2008 for 38 popular models of cars",234,11,1,6,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/ggplot2/mpg.csv","https://vincentarelbundock.github.io/Rdatasets/doc/ggplot2/mpg.html"
"ggplot2","msleep","An updated and expanded version of the mammals sleep dataset",83,11,0,5,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/ggplot2/msleep.csv","https://vincentarelbundock.github.io/Rdatasets/doc/ggplot2/msleep.html"
"ggplot2","presidential","Terms of 12 presidents from Eisenhower to Trump",12,4,1,2,0,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/ggplot2/presidential.csv","https://vincentarelbundock.github.io/Rdatasets/doc/ggplot2/presidential.html"
"ggplot2","seals","Vector field of seal movements",1155,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/ggplot2/seals.csv","https://vincentarelbundock.github.io/Rdatasets/doc/ggplot2/seals.html"
"ggplot2","txhousing","Housing sales in TX",8602,9,0,1,0,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/ggplot2/txhousing.csv","https://vincentarelbundock.github.io/Rdatasets/doc/ggplot2/txhousing.html"
"ggplot2movies","movies","Movie information and user ratings from IMDB.com.",58788,24,7,2,0,0,22,"https://vincentarelbundock.github.io/Rdatasets/csv/ggplot2movies/movies.csv","https://vincentarelbundock.github.io/Rdatasets/doc/ggplot2movies/movies.html"
"gt","constants","The fundamental physical constants",354,6,1,2,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/gt/constants.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gt/constants.html"
"gt","countrypops","Yearly populations of countries from 1960 to 2022",13545,5,0,3,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/gt/countrypops.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gt/countrypops.html"
"gt","exibble","A toy example tibble for testing with gt: exibble",8,9,1,6,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/gt/exibble.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gt/exibble.html"
"gt","films","Feature films in competition at the Cannes Film Festival",1851,8,0,7,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/gt/films.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gt/films.html"
"gt","gibraltar","Weather conditions in Gibraltar, May 2023",1431,10,0,3,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/gt/gibraltar.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gt/gibraltar.html"
"gt","gtcars","Deluxe automobiles from the 2014-2017 period",47,15,1,7,0,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/gt/gtcars.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gt/gtcars.html"
"gt","illness","Lab tests for one suffering from an illness",39,11,0,2,0,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/gt/illness.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gt/illness.html"
"gt","metro","The stations of the Paris Metro",314,11,0,8,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/gt/metro.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gt/metro.html"
"gt","nuclides","Nuclide data",3383,29,1,6,0,1,22,"https://vincentarelbundock.github.io/Rdatasets/csv/gt/nuclides.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gt/nuclides.html"
"gt","peeps","A table of personal information for people all over the world",100,14,1,10,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/gt/peeps.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gt/peeps.html"
"gt","photolysis","Data on photolysis rates for gas-phase organic compounds",34,10,0,6,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/gt/photolysis.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gt/photolysis.html"
"gt","pizzaplace","A year of pizza sales from a pizza place",49574,7,0,6,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/gt/pizzaplace.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gt/pizzaplace.html"
"gt","reactions","Reaction rates for gas-phase atmospheric reactions of organic compounds",1683,39,0,6,0,0,33,"https://vincentarelbundock.github.io/Rdatasets/csv/gt/reactions.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gt/reactions.html"
"gt","rx_addv","An ADDV-flavored clinical trial toy dataset",291,20,7,10,6,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/gt/rx_addv.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gt/rx_addv.html"
"gt","rx_adsl","An ADSL-flavored clinical trial toy dataset",182,14,4,7,4,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/gt/rx_adsl.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gt/rx_adsl.html"
"gt","sp500","Daily S&P 500 Index data from 1950 to 2015",16607,7,0,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/gt/sp500.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gt/sp500.html"
"gt","sza","Twice hourly solar zenith angles by month & latitude",816,4,0,1,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/gt/sza.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gt/sza.html"
"gt","towny","Populations of all municipalities in Ontario from 1996 to 2021",414,25,1,5,0,0,20,"https://vincentarelbundock.github.io/Rdatasets/csv/gt/towny.csv","https://vincentarelbundock.github.io/Rdatasets/doc/gt/towny.html"
"heplots","AddHealth","Adolescent Mental Health Data",4344,3,0,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/AddHealth.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/AddHealth.html"
"heplots","Adopted","Adopted Children",62,6,0,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/Adopted.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/Adopted.html"
"heplots","Bees","Captive and maltreated bees",246,6,2,0,4,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/Bees.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/Bees.html"
"heplots","Diabetes","Diabetes Dataset",145,6,0,0,1,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/Diabetes.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/Diabetes.html"
"heplots","FootHead","Head measurements of football players",90,7,0,0,1,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/FootHead.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/FootHead.html"
"heplots","Headache","Treatment of Headache Sufferers for Sensitivity to Noise",98,6,1,0,2,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/Headache.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/Headache.html"
"heplots","Hernior","Recovery from Elective Herniorrhaphy",32,9,1,0,1,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/Hernior.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/Hernior.html"
"heplots","Iwasaki_Big_Five","Personality Traits of Cultural Groups",203,7,0,0,1,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/Iwasaki_Big_Five.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/Iwasaki_Big_Five.html"
"heplots","mathscore","Math scores for basic math and word problems",12,3,1,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/mathscore.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/mathscore.html"
"heplots","MockJury","Effects Of Physical Attractiveness Upon Mock Jury Decisions",114,17,1,0,2,0,15,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/MockJury.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/MockJury.html"
"heplots","NeuroCog","Neurocognitive Measures in Psychiatric Groups",242,10,1,0,2,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/NeuroCog.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/NeuroCog.html"
"heplots","NLSY","National Longitudinal Survey of Youth Data",243,6,0,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/NLSY.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/NLSY.html"
"heplots","Oslo","Oslo Transect Subset Data",332,14,0,0,4,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/Oslo.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/Oslo.html"
"heplots","Overdose","Overdose of Amitriptyline",17,7,1,0,1,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/Overdose.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/Overdose.html"
"heplots","Parenting","Father Parenting Competence",60,4,0,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/Parenting.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/Parenting.html"
"heplots","peng","Size measurements for penguins near Palmer Station, Antarctica",333,8,1,0,3,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/peng.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/peng.html"
"heplots","Plastic","Plastic Film Data",20,5,2,0,2,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/Plastic.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/Plastic.html"
"heplots","Pottery2","Chemical Analysis of Romano-British Pottery",48,12,0,0,3,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/Pottery2.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/Pottery2.html"
"heplots","Probe1","Response Speed in a Probe Experiment",11,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/Probe1.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/Probe1.html"
"heplots","Probe2","Response Speed in a Probe Experiment",20,6,1,0,1,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/Probe2.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/Probe2.html"
"heplots","RatWeight","Weight Gain in Rats Exposed to Thiouracil and Thyroxin",27,6,0,0,1,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/RatWeight.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/RatWeight.html"
"heplots","ReactTime","Reaction Time Data",10,6,0,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/ReactTime.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/ReactTime.html"
"heplots","Rohwer","Rohwer Data Set",69,10,2,0,1,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/Rohwer.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/Rohwer.html"
"heplots","RootStock","Growth of Apple Trees from Different Root Stocks",48,5,0,0,1,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/RootStock.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/RootStock.html"
"heplots","Sake","Taste Ratings of Japanese Rice Wine (Sake)",30,10,0,0,0,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/Sake.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/Sake.html"
"heplots","schooldata","School Data",70,8,0,0,0,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/schooldata.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/schooldata.html"
"heplots","Skulls","Egyptian Skulls",150,5,0,0,1,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/Skulls.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/Skulls.html"
"heplots","SocGrades","Grades in a Sociology Course",40,10,2,0,3,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/SocGrades.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/SocGrades.html"
"heplots","SocialCog","Social Cognitive Measures in Psychiatric Groups",139,5,0,0,1,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/SocialCog.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/SocialCog.html"
"heplots","TIPI","Data on the Ten Item Personality Inventory",1799,16,3,0,9,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/TIPI.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/TIPI.html"
"heplots","VocabGrowth","Vocabulary growth data",64,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/VocabGrowth.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/VocabGrowth.html"
"heplots","WeightLoss","Weight Loss Data",34,7,0,0,1,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/heplots/WeightLoss.csv","https://vincentarelbundock.github.io/Rdatasets/doc/heplots/WeightLoss.html"
"HistData","Arbuthnot","Arbuthnot's data on male and female birth ratios in London from 1629-1710.",82,7,0,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Arbuthnot.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Arbuthnot.html"
"HistData","Armada","La Felicisima Armada",10,11,0,0,1,0,10,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Armada.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Armada.html"
"HistData","Bowley","Bowley's data on values of British and Irish trade, 1855-1899",45,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Bowley.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Bowley.html"
"HistData","Breslau","Halley's Breslau Life Table",100,8,0,0,0,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Breslau.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Breslau.html"
"HistData","Cavendish","Cavendish's Determinations of the Density of the Earth",29,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Cavendish.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Cavendish.html"
"HistData","ChestSizes","Chest measurements of Scottish Militiamen",16,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/ChestSizes.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/ChestSizes.html"
"HistData","ChestStigler","Chest measurements of Scottish Militiamen",16,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/ChestStigler.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/ChestStigler.html"
"HistData","Cholera","William Farr's Data on Cholera in London, 1849",38,15,0,1,2,0,12,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Cholera.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Cholera.html"
"HistData","CholeraDeaths1849","Daily Deaths from Cholera and Diarrhaea in England, 1849",730,6,1,2,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/CholeraDeaths1849.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/CholeraDeaths1849.html"
"HistData","CushnyPeebles","Cushny-Peebles Data: Soporific Effects of Scopolamine Derivatives",11,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/CushnyPeebles.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/CushnyPeebles.html"
"HistData","CushnyPeeblesN","Cushny-Peebles Data: Soporific Effects of Scopolamine Derivatives",11,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/CushnyPeeblesN.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/CushnyPeeblesN.html"
"HistData","Dactyl","Edgeworth's counts of dactyls in Virgil's Aeneid",60,3,0,0,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Dactyl.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Dactyl.html"
"HistData","DrinksWages","Elderton and Pearson's (1910) data on drinking and wages",70,6,0,0,2,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/DrinksWages.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/DrinksWages.html"
"HistData","EdgeworthDeaths","Edgeworth's Data on Death Rates in British Counties",42,3,0,0,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/EdgeworthDeaths.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/EdgeworthDeaths.html"
"HistData","Fingerprints","Waite's data on Patterns in Fingerprints",36,3,0,0,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Fingerprints.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Fingerprints.html"
"HistData","Galton","Galton's data on the heights of parents and their children",928,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Galton.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Galton.html"
"HistData","GaltonFamilies","Galton's data on the heights of parents and their children, by child",934,8,1,0,2,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/GaltonFamilies.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/GaltonFamilies.html"
"HistData","Guerry","Data from A.-M. Guerry, ""Essay on the Moral Statistics of France""",86,23,0,0,3,0,20,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Guerry.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Guerry.html"
"HistData","HalleyLifeTable","Halley's Life Table",84,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/HalleyLifeTable.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/HalleyLifeTable.html"
"HistData","Jevons","W. Stanley Jevons' data on numerical discrimination",50,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Jevons.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Jevons.html"
"HistData","Langren.all","van Langren's Data on Longitude Distance between Toledo and Rome",61,4,1,0,2,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Langren.all.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Langren.all.html"
"HistData","Langren1644","van Langren's Data on Longitude Distance between Toledo and Rome",12,9,2,0,5,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Langren1644.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Langren1644.html"
"HistData","Macdonell","Macdonell's Data on Height and Finger Length of Criminals, used by Gosset (1908)",924,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Macdonell.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Macdonell.html"
"HistData","MacdonellDF","Macdonell's Data on Height and Finger Length of Criminals, used by Gosset (1908)",3000,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/MacdonellDF.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/MacdonellDF.html"
"HistData","Mayer","Mayer's Data on the Libration of the Moon.",27,6,0,1,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Mayer.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Mayer.html"
"HistData","Michelson","Michelson's Determinations of the Velocity of Light",100,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Michelson.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Michelson.html"
"HistData","MichelsonSets","Michelson's Determinations of the Velocity of Light",20,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/MichelsonSets.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/MichelsonSets.html"
"HistData","Minard.cities","Data from Minard's famous graphic map of Napoleon's march on Moscow",20,3,0,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Minard.cities.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Minard.cities.html"
"HistData","Minard.temp","Data from Minard's famous graphic map of Napoleon's march on Moscow",9,4,0,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Minard.temp.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Minard.temp.html"
"HistData","Minard.troops","Data from Minard's famous graphic map of Napoleon's march on Moscow",51,5,1,0,1,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Minard.troops.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Minard.troops.html"
"HistData","Nightingale","Florence Nightingale's data on deaths from various causes in the Crimean War",24,10,0,0,1,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Nightingale.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Nightingale.html"
"HistData","OldMaps","Latitudes and Longitudes of 39 Points in 11 Old Maps",468,6,0,0,1,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/OldMaps.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/OldMaps.html"
"HistData","PearsonLee","Pearson and Lee's data on the heights of parents and children classified by gender",746,6,2,0,3,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/PearsonLee.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/PearsonLee.html"
"HistData","PolioTrials","Polio Field Trials Data",8,6,1,0,2,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/PolioTrials.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/PolioTrials.html"
"HistData","Pollen","Pollen Data Challenge",3848,5,0,0,0,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Pollen.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Pollen.html"
"HistData","Prostitutes","Parent-Duchatelet's time-series data on the number of prostitutes in Paris",516,5,0,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Prostitutes.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Prostitutes.html"
"HistData","Pyx","Trial of the Pyx",72,4,0,0,3,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Pyx.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Pyx.html"
"HistData","Quarrels","Statistics of Deadly Quarrels",779,84,50,0,64,0,20,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Quarrels.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Quarrels.html"
"HistData","Saturn","Laplace's Saturn data.",24,6,0,0,0,0,6,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Saturn.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Saturn.html"
"HistData","Snow.dates","John Snow's Map and Data on the 1854 London Cholera Outbreak",44,3,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Snow.dates.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Snow.dates.html"
"HistData","Snow.deaths","John Snow's Map and Data on the 1854 London Cholera Outbreak",578,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Snow.deaths.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Snow.deaths.html"
"HistData","Snow.deaths2","John Snow's Map and Data on the 1854 London Cholera Outbreak",578,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Snow.deaths2.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Snow.deaths2.html"
"HistData","Snow.pumps","John Snow's Map and Data on the 1854 London Cholera Outbreak",13,4,0,1,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Snow.pumps.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Snow.pumps.html"
"HistData","Snow.streets","John Snow's Map and Data on the 1854 London Cholera Outbreak",1241,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Snow.streets.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Snow.streets.html"
"HistData","Virginis","John F. W. Herschel's Data on the Orbit of the Twin Stars gamma _Virginis_",18,6,0,2,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Virginis.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Virginis.html"
"HistData","Virginis.interp","John F. W. Herschel's Data on the Orbit of the Twin Stars gamma _Virginis_",14,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Virginis.interp.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Virginis.interp.html"
"HistData","Wheat","Playfair's Data on Wages and the Price of Wheat",53,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Wheat.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Wheat.html"
"HistData","Wheat.monarchs","Playfair's Data on Wages and the Price of Wheat",12,4,1,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Wheat.monarchs.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Wheat.monarchs.html"
"HistData","Yeast","Student's (1906) Yeast Cell Counts",36,3,0,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/Yeast.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/Yeast.html"
"HistData","YeastD.mat","Student's (1906) Yeast Cell Counts",20,20,0,0,0,0,20,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/YeastD.mat.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/YeastD.mat.html"
"HistData","ZeaMays","Darwin's Heights of Cross- and Self-fertilized Zea May Pairs",15,5,0,0,1,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/HistData/ZeaMays.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HistData/ZeaMays.html"
"HLMdiag","ahd","Methylprednisolone data",330,5,1,0,2,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/HLMdiag/ahd.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HLMdiag/ahd.html"
"HLMdiag","autism","Autism data",604,7,3,0,4,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/HLMdiag/autism.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HLMdiag/autism.html"
"HLMdiag","radon","Radon data",919,5,1,0,1,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/HLMdiag/radon.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HLMdiag/radon.html"
"HLMdiag","wages","Wages for male high school dropouts",6402,15,3,0,3,0,12,"https://vincentarelbundock.github.io/Rdatasets/csv/HLMdiag/wages.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HLMdiag/wages.html"
"HSAUR","agefat","Total Body Composision Data",25,3,1,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/agefat.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/agefat.html"
"HSAUR","aspirin","Aspirin Data",7,4,0,0,0,0,4,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/aspirin.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/aspirin.html"
"HSAUR","BCG","BCG Vaccine Data",13,7,0,0,0,0,7,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/BCG.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/BCG.html"
"HSAUR","birthdeathrates","Birth and Death Rates Data",69,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/birthdeathrates.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/birthdeathrates.html"
"HSAUR","bladdercancer","Bladder Cancer Data",31,3,1,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/bladdercancer.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/bladdercancer.html"
"HSAUR","BtheB","Beat the Blues Data",100,8,3,0,3,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/BtheB.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/BtheB.html"
"HSAUR","clouds","Cloud Seeding Data",24,7,2,0,2,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/clouds.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/clouds.html"
"HSAUR","CYGOB1","CYG OB1 Star Cluster Data",47,2,0,0,0,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/CYGOB1.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/CYGOB1.html"
"HSAUR","epilepsy","Epilepsy Data",236,6,1,0,3,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/epilepsy.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/epilepsy.html"
"HSAUR","Forbes2000","The Forbes 2000 Ranking of the World's Biggest Companies (Year 2004)",2000,8,0,1,2,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/Forbes2000.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/Forbes2000.html"
"HSAUR","foster","Foster Feeding Experiment",61,3,0,0,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/foster.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/foster.html"
"HSAUR","gardenflowers","Garden Flowers",153,1,0,0,0,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/gardenflowers.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/gardenflowers.html"
"HSAUR","GHQ","General Health Questionnaire",22,4,1,0,1,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/GHQ.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/GHQ.html"
"HSAUR","heptathlon","Olympic Heptathlon Seoul 1988",25,8,0,0,0,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/heptathlon.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/heptathlon.html"
"HSAUR","Lanza","Prevention of Gastointestinal Damages",198,3,1,0,3,0,0,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/Lanza.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/Lanza.html"
"HSAUR","mastectomy","Survival Times after Mastectomy of Breast Cancer Patients",44,3,2,0,1,1,1,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/mastectomy.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/mastectomy.html"
"HSAUR","meteo","Meteorological Measurements for 11 Years",11,6,0,0,1,0,5,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/meteo.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/meteo.html"
"HSAUR","orallesions","Oral Lesions in Rural India",24,3,0,0,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/orallesions.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/orallesions.html"
"HSAUR","phosphate","Phosphate Level Data",33,9,1,0,1,0,8,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/phosphate.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/phosphate.html"
"HSAUR","pistonrings","Piston Rings Failures",12,3,0,0,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/pistonrings.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/pistonrings.html"
"HSAUR","planets","Exoplanets Data",101,3,0,0,0,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/planets.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/planets.html"
"HSAUR","plasma","Blood Screening Data",32,3,1,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/plasma.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/plasma.html"
"HSAUR","polyps","Familial Andenomatous Polyposis",20,3,1,0,1,0,2,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/polyps.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/polyps.html"
"HSAUR","polyps3","Familial Andenomatous Polyposis",22,5,2,0,2,0,3,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/polyps3.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/polyps3.html"
"HSAUR","pottery","Romano-British Pottery Data",45,9,0,0,0,0,9,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/pottery.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/pottery.html"
"HSAUR","rearrests","Rearrests of Juvenile Felons",4,3,2,0,2,0,1,"https://vincentarelbundock.github.io/Rdatasets/csv/HSAUR/rearrests.csv","https://vincentarelbundock.github.io/Rdatasets/doc/HSAUR/rearrests.html"