Skip to contents

Search available datasets from the Rdatasets archive by regular expression.

Usage

rdsearch(
  pattern,
  field = NULL,
  fixed = FALSE,
  perl = FALSE,
  ignore.case = FALSE
)

Arguments

pattern

String. Search pattern. Can be a regular expression or literal string depending on the fixed argument.

field

String. Which field to search in. One of "package", "dataset", "title". If NULL (default), searches in all three fields.

fixed

logical. If TRUE, pattern is a string to be matched as is. Overrides all conflicting arguments.

perl

logical. Should Perl-compatible regexps be used?

ignore.case

logical. if FALSE, the pattern matching is case sensitive and if TRUE, case is ignored during matching.

Value

A data frame containing matching datasets with the following columns:

  • Package: Character. The name of the R package that contains the dataset

  • Dataset: Character. The name of the dataset

  • Title: Character. A descriptive title for the dataset

  • Rows: Integer. Number of rows in the dataset

  • Cols: Integer. Number of columns in the dataset

  • n_binary: Integer. Number of binary variables in the dataset

  • n_character: Integer. Number of character variables in the dataset

  • n_factor: Integer. Number of factor variables in the dataset

  • n_logical: Integer. Number of logical variables in the dataset

  • n_numeric: Integer. Number of numeric variables in the dataset

  • CSV: Character. URL to download the dataset in CSV format

  • Doc: Character. URL to the dataset's documentation

Global Options

The following global options control package behavior:

  • Rdatasets_cache: Logical

    • Whether to cache downloaded data and index for faster subsequent access. Default: TRUE. Please keep this option TRUE as it makes repeated access faster and avoids overloading the Rdatasets server. Only set to FALSE if local memory is severely limited.

    • Ex: `options(Rdatasets_cache = TRUE)“

  • Rdatasets_class: String

    • Output class of the returned data. One of "data.frame" (default), "tibble", or "data.table". Default: "data.frame". Requires the respective packages to be installed for "tibble" or "data.table" formats.

    • Ex: options(Rdatasets_class = "tibble")

  • Rdataset_path: String.

    • Base URL for the Rdatasets archive. Default: "https://vincentarelbundock.github.io/Rdatasets/". Advanced users can set this to use a different mirror or local copy.

    • Ex: options(Rdataset_path = "https://vincentarelbundock.github.io/Rdatasets/")

Examples

# Search all fields (default behavior)
rdsearch("iris")
#>       Package Dataset                      Title Rows Cols n_binary n_character
#> 1011 datasets    iris Edgar Anderson's Iris Data  150    5        0           0
#> 1012 datasets   iris3 Edgar Anderson's Iris Data   50   12        0           0
#>      n_factor n_logical n_numeric
#> 1011        1         0         4
#> 1012        0         0        12
#>                                                                        CSV
#> 1011  https://vincentarelbundock.github.io/Rdatasets/csv/datasets/iris.csv
#> 1012 https://vincentarelbundock.github.io/Rdatasets/csv/datasets/iris3.csv
#>                                                                         Doc
#> 1011  https://vincentarelbundock.github.io/Rdatasets/doc/datasets/iris.html
#> 1012 https://vincentarelbundock.github.io/Rdatasets/doc/datasets/iris3.html

# Case-insensitive search
rdsearch("(?i)titanic")
#>         Package         Dataset                                 Title Rows Cols
#> 698     carData TitanicSurvival Survival of Passengers on the Titanic 1309    4
#> 769  causaldata         titanic  Data from the sinking of the Titanic 2201    4
#> 803       COUNT         titanic                               titanic 1316    4
#> 804       COUNT      titanicgrp                            titanicgrp   12    5
#> 1061   datasets         Titanic Survival of passengers on the Titanic   32    5
#> 2954  Stat2Data         Titanic             Passengers on the Titanic 1313    6
#> 3322        vcd       Lifeboats              Lifeboats on the Titanic   18    8
#> 3378   vcdExtra        Titanicp             Passengers on the Titanic 1309    6
#>      n_binary n_character n_factor n_logical n_numeric
#> 698         2           0        3         0         1
#> 769         3           0        0         0         4
#> 803         3           0        4         0         0
#> 804         2           0        0         0         5
#> 1061        3           0        4         0         1
#> 2954        3           0        3         0         3
#> 3322        1           0        2         0         5
#> 3378        2           0        3         0         3
#>                                                                                 CSV
#> 698  https://vincentarelbundock.github.io/Rdatasets/csv/carData/TitanicSurvival.csv
#> 769       https://vincentarelbundock.github.io/Rdatasets/csv/causaldata/titanic.csv
#> 803            https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/titanic.csv
#> 804         https://vincentarelbundock.github.io/Rdatasets/csv/COUNT/titanicgrp.csv
#> 1061        https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Titanic.csv
#> 2954       https://vincentarelbundock.github.io/Rdatasets/csv/Stat2Data/Titanic.csv
#> 3322           https://vincentarelbundock.github.io/Rdatasets/csv/vcd/Lifeboats.csv
#> 3378       https://vincentarelbundock.github.io/Rdatasets/csv/vcdExtra/Titanicp.csv
#>                                                                                  Doc
#> 698  https://vincentarelbundock.github.io/Rdatasets/doc/carData/TitanicSurvival.html
#> 769       https://vincentarelbundock.github.io/Rdatasets/doc/causaldata/titanic.html
#> 803            https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/titanic.html
#> 804         https://vincentarelbundock.github.io/Rdatasets/doc/COUNT/titanicgrp.html
#> 1061        https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Titanic.html
#> 2954       https://vincentarelbundock.github.io/Rdatasets/doc/Stat2Data/Titanic.html
#> 3322           https://vincentarelbundock.github.io/Rdatasets/doc/vcd/Lifeboats.html
#> 3378       https://vincentarelbundock.github.io/Rdatasets/doc/vcdExtra/Titanicp.html

# Search only in package names
rdsearch("datasets", field = "package")
#>            Package                       Dataset
#> 806  crimedatasets                Abilene_tbl_df
#> 807  crimedatasets               Attorney_tbl_df
#> 808  crimedatasets                     Boston_df
#> 809  crimedatasets              camden_crimes_df
#> 810  crimedatasets             corruption_tbl_df
#> 811  crimedatasets          crimeHSdegree_tbl_df
#> 812  crimedatasets         crimestatewide_tbl_df
#> 813  crimedatasets              crimOffenders_df
#> 814  crimedatasets                 crimtab_table
#> 815  crimedatasets      CyberSecurityBreaches_df
#> 816  crimedatasets           DeathPenaltyRace_df
#> 817  crimedatasets               DrunkDST_tbl_df
#> 818  crimedatasets                   Fatality_df
#> 819  crimedatasets            FBICriminal_tbl_df
#> 820  crimedatasets                 fraudulent_df
#> 821  crimedatasets                 Gallup_tbl_df
#> 822  crimedatasets                    georgia_sf
#> 823  crimedatasets                  Hartnagel_df
#> 824  crimedatasets            hate_crimes_tbl_df
#> 825  crimedatasets            homicides15_tbl_df
#> 826  crimedatasets                 Inmate_tbl_df
#> 827  crimedatasets                NCAdata_tbl_df
#> 828  crimedatasets               Ndrangheta_list
#> 829  crimedatasets           NigeriaTerrorism_df
#> 830  crimedatasets               NVCAdata_tbl_df
#> 831  crimedatasets                 nz_murders_sf
#> 832  crimedatasets       police_shootings_tbl_df
#> 833  crimedatasets               rearrests_table
#> 834  crimedatasets               Sentence_tbl_df
#> 835  crimedatasets                 sentencing_sf
#> 836  crimedatasets            Suicide_Germany_df
#> 837  crimedatasets         TerrorismGlobal_table
#> 838  crimedatasets                  uk_serial_df
#> 839  crimedatasets                  USArrests_df
#> 840  crimedatasets             USATerror_data_df
#> 841  crimedatasets                    UScrime_df
#> 842  crimedatasets           UScrimerates_tbl_df
#> 843  crimedatasets           USincarcerations_df
#> 844  crimedatasets             USJudgeRatings_df
#> 845  crimedatasets          vehiclethefts_tbl_df
#> 846  crimedatasets                   wmurders_ts
#> 972       datasets                   ability.cov
#> 973       datasets                      airmiles
#> 974       datasets                 AirPassengers
#> 975       datasets                    airquality
#> 976       datasets                      anscombe
#> 977       datasets                        attenu
#> 978       datasets                      attitude
#> 979       datasets                       austres
#> 980       datasets             beaver1 (beavers)
#> 981       datasets             beaver2 (beavers)
#> 982       datasets                       BJsales
#> 983       datasets        BJsales.lead (BJsales)
#> 984       datasets                           BOD
#> 985       datasets                          cars
#> 986       datasets                   ChickWeight
#> 987       datasets                      chickwts
#> 988       datasets                           CO2
#> 989       datasets                           co2
#> 990       datasets                       crimtab
#> 991       datasets                   discoveries
#> 992       datasets                         DNase
#> 993       datasets                         esoph
#> 994       datasets                          euro
#> 995       datasets             euro.cross (euro)
#> 996       datasets                      eurodist
#> 997       datasets                EuStockMarkets
#> 998       datasets                      faithful
#> 999       datasets        fdeaths (UKLungDeaths)
#> 1000      datasets                  Formaldehyde
#> 1001      datasets                        freeny
#> 1002      datasets             freeny.x (freeny)
#> 1003      datasets             freeny.y (freeny)
#> 1004      datasets                          gait
#> 1005      datasets                  HairEyeColor
#> 1006      datasets                  Harman23.cor
#> 1007      datasets                  Harman74.cor
#> 1008      datasets                      Indometh
#> 1009      datasets                        infert
#> 1010      datasets                  InsectSprays
#> 1011      datasets                          iris
#> 1012      datasets                         iris3
#> 1013      datasets                       islands
#> 1014      datasets                JohnsonJohnson
#> 1015      datasets                     LakeHuron
#> 1016      datasets        ldeaths (UKLungDeaths)
#> 1017      datasets                            lh
#> 1018      datasets              LifeCycleSavings
#> 1019      datasets                      Loblolly
#> 1020      datasets                       longley
#> 1021      datasets                          lynx
#> 1022      datasets        mdeaths (UKLungDeaths)
#> 1023      datasets                        morley
#> 1024      datasets                        mtcars
#> 1025      datasets                        nhtemp
#> 1026      datasets                          Nile
#> 1027      datasets                        nottem
#> 1028      datasets                           npk
#> 1029      datasets            occupationalStatus
#> 1030      datasets                        Orange
#> 1031      datasets                 OrchardSprays
#> 1032      datasets                      penguins
#> 1033      datasets       penguins_raw (penguins)
#> 1034      datasets                   PlantGrowth
#> 1035      datasets                        precip
#> 1036      datasets                    presidents
#> 1037      datasets                      pressure
#> 1038      datasets                     Puromycin
#> 1039      datasets                        quakes
#> 1040      datasets                         randu
#> 1041      datasets                        rivers
#> 1042      datasets                          rock
#> 1043      datasets                     Seatbelts
#> 1044      datasets                         sleep
#> 1045      datasets        stack.loss (stackloss)
#> 1046      datasets           stack.x (stackloss)
#> 1047      datasets                     stackloss
#> 1048      datasets             state.abb (state)
#> 1049      datasets            state.area (state)
#> 1050      datasets          state.center (state)
#> 1051      datasets        state.division (state)
#> 1052      datasets            state.name (state)
#> 1053      datasets          state.region (state)
#> 1054      datasets             state.x77 (state)
#> 1055      datasets sunspot.m2014 (sunspot.month)
#> 1056      datasets                 sunspot.month
#> 1057      datasets                  sunspot.year
#> 1058      datasets                      sunspots
#> 1059      datasets                         swiss
#> 1060      datasets                        Theoph
#> 1061      datasets                       Titanic
#> 1062      datasets                   ToothGrowth
#> 1063      datasets                      treering
#> 1064      datasets                         trees
#> 1065      datasets                 UCBAdmissions
#> 1066      datasets                UKDriverDeaths
#> 1067      datasets                         UKgas
#> 1068      datasets                   USAccDeaths
#> 1069      datasets                     USArrests
#> 1070      datasets                     UScitiesD
#> 1071      datasets                USJudgeRatings
#> 1072      datasets         USPersonalExpenditure
#> 1073      datasets                         uspop
#> 1074      datasets                      VADeaths
#> 1075      datasets                       volcano
#> 1076      datasets                    warpbreaks
#> 1077      datasets                         women
#> 1078      datasets                   WorldPhones
#> 1079      datasets                      WWWusage
#> 3240    usdatasets                  acs12_tbl_df
#> 3241    usdatasets             age_at_mar_tbl_df
#> 3242    usdatasets               airlines_tbl_df
#> 3243    usdatasets               airports_tbl_df
#> 3244    usdatasets                 airquality_df
#> 3245    usdatasets                   ames_tbl_df
#> 3246    usdatasets                 births_tbl_df
#> 3247    usdatasets               births14_tbl_df
#> 3248    usdatasets                     Boston_df
#> 3249    usdatasets                     Cars93_df
#> 3250    usdatasets                 census_tbl_df
#> 3251    usdatasets           cia_factbook_tbl_df
#> 3252    usdatasets                cle_sac_tbl_df
#> 3253    usdatasets                 county_tbl_df
#> 3254    usdatasets         env_regulation_tbl_df
#> 3255    usdatasets                   fcid_tbl_df
#> 3256    usdatasets                   goog_tbl_df
#> 3257    usdatasets              govrace10_tbl_df
#> 3258    usdatasets            homicides15_tbl_df
#> 3259    usdatasets                  house_tbl_df
#> 3260    usdatasets            houserace10_tbl_df
#> 3261    usdatasets            immigration_tbl_df
#> 3262    usdatasets               leg_mari_tbl_df
#> 3263    usdatasets               marathon_tbl_df
#> 3264    usdatasets               military_tbl_df
#> 3265    usdatasets                     minn38_df
#> 3266    usdatasets         mlb_players_18_tbl_df
#> 3267    usdatasets     mn_police_use_of_force_df
#> 3268    usdatasets         nba_players_19_tbl_df
#> 3269    usdatasets               ncbirths_tbl_df
#> 3270    usdatasets           nyc_marathon_tbl_df
#> 3271    usdatasets       nycvehiclethefts_tbl_df
#> 3272    usdatasets      offshore_drilling_tbl_df
#> 3273    usdatasets                 orings_tbl_df
#> 3274    usdatasets                 oscars_tbl_df
#> 3275    usdatasets                 piracy_tbl_df
#> 3276    usdatasets                precip_numeric
#> 3277    usdatasets                 presidents_ts
#> 3278    usdatasets               prrace08_tbl_df
#> 3279    usdatasets                       road_df
#> 3280    usdatasets           senaterace10_tbl_df
#> 3281    usdatasets        sp500_1950_2018_tbl_df
#> 3282    usdatasets                  sp500_tbl_df
#> 3283    usdatasets           state_abb_character
#> 3284    usdatasets            state_area_numeric
#> 3285    usdatasets             state_center_list
#> 3286    usdatasets         state_division_factor
#> 3287    usdatasets          state_name_character
#> 3288    usdatasets           state_region_factor
#> 3289    usdatasets              state_x77_matrix
#> 3290    usdatasets           UCBAdmissions_table
#> 3291    usdatasets    us_crime_rates_spec_tbl_df
#> 3292    usdatasets                us_temp_tbl_df
#> 3293    usdatasets         us_time_survey_tbl_df
#> 3294    usdatasets                USAccDeaths_ts
#> 3295    usdatasets                  USArrests_df
#> 3296    usdatasets                UScitiesD_dist
#> 3297    usdatasets             USJudgeRatings_df
#> 3298    usdatasets  USPersonalExpenditure_matrix
#> 3299    usdatasets                      uspop_ts
#> 3300    usdatasets               VADeaths_matrix
#> 3301    usdatasets       voter_count_spec_tbl_df
#> 3302    usdatasets                      women_df
#>                                                                         Title
#> 806                                      Crime Records of Abilene, Texas, USA
#> 807                           Convictions Reported by U.S. Attorney's Offices
#> 808                                                       Boston Housing Data
#> 809                                       Crime Records of Camden Borough, UK
#> 810                                         China's Corruption Investigations
#> 811                                      US Crime Rates & High School Dropout
#> 812                                       Annual Crime Dataset of US Counties
#> 813                                    Criminal Offenders Screened in Florida
#> 814                                             Student's 3000 Criminals Data
#> 815                   Cybersecurity Breaches Reported to US Health Department
#> 816                                         Death Penalty and Race in Georgia
#> 817                          US Casualties: Drunk Driving, Suicide, Terrorism
#> 818                                     Drunk Driving Laws and Traffic Deaths
#> 819                                      FBI Criminal Background Check System
#> 820                                    Fraudulent Automobile Insurance Claims
#> 821                                   Gallup Marijuana Possession Poll (1980)
#> 822                                       Crime Records of Georgia State, USA
#> 823                              Canadian Crime Rates Time Series (1931–1968)
#> 824                                    US Hate Crimes & Socioeconomic Factors
#> 825                                        Homicides in Nine US Cities (2015)
#> 826                                              Type of Drug Offense by Race
#> 827                        Interim Dane Data with New Criminal Activity (NCA)
#> 828                                   Ndrangheta Mafia Covert Network Dataset
#> 829                                                    Nigeria Terrorism Data
#> 830                    Interim Data with New Violent Criminal Activity (NVCA)
#> 831                                      Murders in New Zealand (2004 - 2019)
#> 832                                               Fatal Police Shootings data
#> 833                                              Rearrests of Juvenile Felons
#> 834                 Sentences of 41 Prisoners Convicted of a Homicide Offense
#> 835               Florida State Prison Sentencing Counts by County, 1905-1910
#> 836                                                  Suicide Rates in Germany
#> 837                          Global Terrorism Database (GTD) Yearly Summaries
#> 838                                    Serial Killers of the UK (1828 - 2015)
#> 839                                           Violent Crime Rates by US State
#> 840                                Terrorism Incidents in the USA (1968-1974)
#> 841                           The Effect of Punishment Regimes on Crime Rates
#> 842                                                US Crime Rates (1960–2019)
#> 843                                             US Incarcerations 1925 Onward
#> 844                 Lawyers' Ratings of State Judges in the US Superior Court
#> 845                                            NYC Vehicle Thefts (2014-2017)
#> 846                          Annual Female Murder Rate in the USA (1950-2004)
#> 972                                            Ability and Intelligence Tests
#> 973                      Passenger Miles on Commercial US Airlines, 1937-1960
#> 974                               Monthly Airline Passenger Numbers 1949-1960
#> 975                                         New York Air Quality Measurements
#> 976               Anscombe's Quartet of 'Identical' Simple Linear Regressions
#> 977                                         The Joyner-Boore Attenuation Data
#> 978                                        The Chatterjee-Price Attitude Data
#> 979               Quarterly Time Series of the Number of Australian Residents
#> 980                                    Body Temperature Series of Two Beavers
#> 981                                    Body Temperature Series of Two Beavers
#> 982                                         Sales Data with Leading Indicator
#> 983                                         Sales Data with Leading Indicator
#> 984                                                 Biochemical Oxygen Demand
#> 985                                      Speed and Stopping Distances of Cars
#> 986                            Weight versus age of chicks on different diets
#> 987                                              Chicken Weights by Feed Type
#> 988                                     Carbon Dioxide Uptake in Grass Plants
#> 989                                   Mauna Loa Atmospheric CO2 Concentration
#> 990                                             Student's 3000 Criminals Data
#> 991                                   Yearly Numbers of Important Discoveries
#> 992                                                      Elisa assay of DNase
#> 993                                 Smoking, Alcohol and (O)esophageal Cancer
#> 994                                       Conversion Rates of Euro Currencies
#> 995                                       Conversion Rates of Euro Currencies
#> 996                   Distances Between European Cities and Between US Cities
#> 997           Daily Closing Prices of Major European Stock Indices, 1991-1998
#> 998                                                  Old Faithful Geyser Data
#> 999                               Monthly Deaths from Lung Diseases in the UK
#> 1000                                            Determination of Formaldehyde
#> 1001                                                    Freeny's Revenue Data
#> 1002                                                    Freeny's Revenue Data
#> 1003                                                    Freeny's Revenue Data
#> 1004                                         Hip and Knee Angle while Walking
#> 1005                                Hair and Eye Color of Statistics Students
#> 1006                                                       Harman Example 2.3
#> 1007                                                       Harman Example 7.4
#> 1008                                         Pharmacokinetics of Indomethacin
#> 1009                       Infertility after Spontaneous and Induced Abortion
#> 1010                                           Effectiveness of Insect Sprays
#> 1011                                               Edgar Anderson's Iris Data
#> 1012                                               Edgar Anderson's Iris Data
#> 1013                                    Areas of the World's Major Landmasses
#> 1014                           Quarterly Earnings per Johnson & Johnson Share
#> 1015                                            Level of Lake Huron 1875-1972
#> 1016                              Monthly Deaths from Lung Diseases in the UK
#> 1017                                     Luteinizing Hormone in Blood Samples
#> 1018                                     Intercountry Life-Cycle Savings Data
#> 1019                                            Growth of Loblolly Pine Trees
#> 1020                                       Longley's Economic Regression Data
#> 1021                                 Annual Canadian Lynx trappings 1821-1934
#> 1022                              Monthly Deaths from Lung Diseases in the UK
#> 1023                                            Michelson Speed of Light Data
#> 1024                                               Motor Trend Car Road Tests
#> 1025                                 Average Yearly Temperatures in New Haven
#> 1026                                                   Flow of the River Nile
#> 1027                    Average Monthly Temperatures at Nottingham, 1920-1939
#> 1028                                   Classical N, P, K Factorial Experiment
#> 1029                            Occupational Status of Fathers and their Sons
#> 1030                                                   Growth of Orange Trees
#> 1031                                                Potency of Orchard Sprays
#> 1032                 Measurements of Penguins near Palmer Station, Antarctica
#> 1033                 Measurements of Penguins near Palmer Station, Antarctica
#> 1034                               Results from an Experiment on Plant Growth
#> 1035                               Annual Precipitation in Selected US Cities
#> 1036                              Quarterly Approval Ratings of US Presidents
#> 1037                   Vapor Pressure of Mercury as a Function of Temperature
#> 1038                               Reaction Velocity of an Enzymatic Reaction
#> 1039                                        Locations of Earthquakes off Fiji
#> 1040                         Random Numbers from Congruential Generator RANDU
#> 1041                                   Lengths of Major North American Rivers
#> 1042                                   Measurements on Petroleum Rock Samples
#> 1043                                 Road Casualties in Great Britain 1969-84
#> 1044                                                     Student's Sleep Data
#> 1045                                         Brownlee's Stack Loss Plant Data
#> 1046                                         Brownlee's Stack Loss Plant Data
#> 1047                                         Brownlee's Stack Loss Plant Data
#> 1048                                               US State Facts and Figures
#> 1049                                               US State Facts and Figures
#> 1050                                               US State Facts and Figures
#> 1051                                               US State Facts and Figures
#> 1052                                               US State Facts and Figures
#> 1053                                               US State Facts and Figures
#> 1054                                               US State Facts and Figures
#> 1055                             Monthly Sunspot Data, from 1749 to "Present"
#> 1056                             Monthly Sunspot Data, from 1749 to "Present"
#> 1057                                           Yearly Sunspot Data, 1700-1988
#> 1058                                       Monthly Sunspot Numbers, 1749-1983
#> 1059                 Swiss Fertility and Socioeconomic Indicators (1888) Data
#> 1060                                         Pharmacokinetics of Theophylline
#> 1061                                    Survival of passengers on the Titanic
#> 1062                   The Effect of Vitamin C on Tooth Growth in Guinea Pigs
#> 1063                                        Yearly Tree-Ring Data, -6000-1979
#> 1064                       Diameter, Height and Volume for Black Cherry Trees
#> 1065                                        Student Admissions at UC Berkeley
#> 1066                                 Road Casualties in Great Britain 1969-84
#> 1067                                             UK Quarterly Gas Consumption
#> 1068                                    Accidental Deaths in the US 1973-1978
#> 1069                                          Violent Crime Rates by US State
#> 1070                  Distances Between European Cities and Between US Cities
#> 1071                Lawyers' Ratings of State Judges in the US Superior Court
#> 1072                                                Personal Expenditure Data
#> 1073                                    Populations Recorded by the US Census
#> 1074                                           Death Rates in Virginia (1940)
#> 1075                Topographic Information on Auckland's Maunga Whau Volcano
#> 1076                              The Number of Breaks in Yarn during Weaving
#> 1077                           Average Heights and Weights for American Women
#> 1078                                                   The World's Telephones
#> 1079                                                Internet Usage per Minute
#> 3240                                           American Community Survey 2012
#> 3241                                 Age at first marriage of 5,534 US women.
#> 3242                    Airline names - U.S. Airlines Carrier Codes and Names
#> 3243                             Airport metadata - U.S. Airports Information
#> 3244                                        New York Air Quality Measurements
#> 3245                                             Housing prices in Ames, Iowa
#> 3246                                         North Carolina births, 100 cases
#> 3247                                                           US Births 2014
#> 3248                                      Housing Values in Suburbs of Boston
#> 3249                             Data from 93 Cars on Sale in the USA in 1993
#> 3250                                   Random sample of 2000 U.S. Census Data
#> 3251                                        CIA Factbook Details on Countries
#> 3252              Cleveland and Sacramento Demographic and Income Data (2000)
#> 3253                                                   United States Counties
#> 3254                       American Adults on Regulation and Renewable Energy
#> 3255         Summary of male heights from USDA Food Commodity Intake Database
#> 3256                                                        Google stock data
#> 3257                     Election results for 2010 Governor races in the U.S.
#> 3258                                         Homicides in nine cities in 2015
#> 3259                United States House of Representatives historical make-up
#> 3260         Election results for the 2010 U.S. House of Represenatives races
#> 3261                                        Poll on illegal workers in the US
#> 3262              Legalization of Marijuana Support in 2010 California Survey
#> 3263                                  New York City Marathon Times (outdated)
#> 3264                                                 US Military Demographics
#> 3265                                  Minnesota High School Graduates of 1938
#> 3266            Batter Statistics for 2018 Major League Baseball (MLB) Season
#> 3267                                    Minneapolis police use of force data.
#> 3268                                     NBA Players for the 2018-2019 season
#> 3269                                        North Carolina births, 1000 cases
#> 3270                                             New York City Marathon Times
#> 3271                                    Thefts of motor vehicles 2014 to 2017
#> 3272                     California poll on drilling off the California coast
#> 3273                                     1986 Challenger disaster and O-rings
#> 3274                                              Oscar winners, 1929 to 2018
#> 3275                                                     Piracy and PIPA/SOPA
#> 3276                                        Annual Precipitation in US Cities
#> 3277                              Quarterly Approval Ratings of US Presidents
#> 3278                     Election results for the 2008 U.S. Presidential race
#> 3279                                        Road Accident Deaths in US States
#> 3280                          Election results for the 2010 U.S. Senate races
#> 3281         Daily observations for the S&P 500 - Historical Data (1950-2018)
#> 3282                           Financial information for 50 S&P 500 companies
#> 3283                    US State Facts and Figures - U.S. State Abbreviations
#> 3284                              US State Facts and Figures - US State Areas
#> 3285                            US State Facts and Figures - US State Centers
#> 3286                          US State Facts and Figures - US State Divisions
#> 3287                              US State Facts and Figures - US State Names
#> 3288                            US State Facts and Figures - US State Regions
#> 3289 US State Facts and Figures - US State Demographics and Statistics (1977)
#> 3290                                        Student Admissions at UC Berkeley
#> 3291                                                           US Crime Rates
#> 3292                                                      US Temperature Data
#> 3293                                         American Time Survey 2009 - 2019
#> 3294                                    Accidental Deaths in the US 1973-1978
#> 3295                                          Violent Crime Rates by US State
#> 3296                  Distances Between European Cities and Between US Cities
#> 3297                Lawyers' Ratings of State Judges in the US Superior Court
#> 3298                                                Personal Expenditure Data
#> 3299                                    Populations Recorded by the US Census
#> 3300                                           Death Rates in Virginia (1940)
#> 3301                                                   US Voter Turnout Data.
#> 3302                           Average Heights and Weights for American Women
#>         Rows Cols n_binary n_character n_factor n_logical n_numeric
#> 806       16    3        1           1        1         0         1
#> 807       88    3        0           1        0         0         2
#> 808      506   14        1           0        0         0        14
#> 809     4578    4        1           1        0         0         2
#> 810       10    6        0           2        0         0         4
#> 811       51    3        0           1        0         0         2
#> 812       51    9        0           1        0         0         8
#> 813     5855   16        2           0        3         0        13
#> 814      924    3        0           0        2         0         1
#> 815     1151    9        1           2        4         1         1
#> 816       12    4        1           0        1         0         3
#> 817       49    5        0           0        0         0         5
#> 818      336   10        2           0        2         0         8
#> 819    11648   35        1           3        0         0        32
#> 820       42   12       11           0       10         0         2
#> 821     1200    2        0           0        2         0         0
#> 822      159   26        0           2        0         0        23
#> 823       38    8        0           0        0         0         8
#> 824       51   13        0           2        0         0        11
#> 825     1922   15        2           8        0         0         6
#> 826    28047    2        0           0        2         0         0
#> 827     1891   19       14           0        0         0        19
#> 828      146  149      146           2        0         0       147
#> 829      312    6        0           0        0         0         6
#> 830     1891   19       14           0        0         0        19
#> 831      967   12        1           7        1         0         2
#> 832     6421   12        4           8        0         2         1
#> 833        4    3        2           0        2         0         1
#> 834       41    1        0           0        0         0         1
#> 835       47    9        1           1        0         0         7
#> 836      306    6        1           0        4         0         2
#> 837    10200    3        0           0        2         0         1
#> 838       62    8        0           2        2         0         4
#> 839       50    4        0           0        0         0         4
#> 840        6    2        0           0        0         0         2
#> 841       47   16        1           0        0         0        16
#> 842       60   12        0           0        0         0        12
#> 843       95    7        0           0        0         0         7
#> 844       43   12        0           0        0         0        12
#> 845    35746    9        0           6        0         0         3
#> 846       55    2        0           0        0         0         2
#> 972        6    8        0           0        0         0         8
#> 973       24    2        0           0        0         0         2
#> 974      144    2        0           0        0         0         2
#> 975      153    6        0           0        0         0         6
#> 976       11    8        1           0        0         0         8
#> 977      182    5        0           0        1         0         4
#> 978       30    7        0           0        0         0         7
#> 979       89    2        0           0        0         0         2
#> 980      114    4        2           0        0         0         4
#> 981      100    4        2           0        0         0         4
#> 982      150    2        0           0        0         0         2
#> 983      150    2        0           0        0         0         2
#> 984        6    2        0           0        0         0         2
#> 985       50    2        0           0        0         0         2
#> 986      578    4        0           0        2         0         2
#> 987       71    2        0           0        1         0         1
#> 988       84    5        2           0        3         0         2
#> 989      468    2        0           0        0         0         2
#> 990      924    3        0           0        2         0         1
#> 991      100    2        0           0        0         0         2
#> 992      176    3        0           0        1         0         2
#> 993       88    5        0           0        3         0         2
#> 994       11    1        0           0        0         0         1
#> 995       11   11        0           0        0         0        11
#> 996      210    1        0           0        0         0         1
#> 997     1860    4        0           0        0         0         4
#> 998      272    2        0           0        0         0         2
#> 999       72    2        0           0        0         0         2
#> 1000       6    2        0           0        0         0         2
#> 1001      39    5        0           0        0         0         5
#> 1002      39    4        0           0        0         0         4
#> 1003      39    2        0           0        0         0         2
#> 1004      20   78        0           0        0         0        78
#> 1005      32    4        1           0        3         0         1
#> 1006       8   10        0           0        0         0        10
#> 1007      24   26        0           0        0         0        26
#> 1008      66    3        0           0        1         0         2
#> 1009     248    8        1           0        1         0         7
#> 1010      72    2        0           0        1         0         1
#> 1011     150    5        0           0        1         0         4
#> 1012      50   12        0           0        0         0        12
#> 1013      48    1        0           0        0         0         1
#> 1014      84    2        0           0        0         0         2
#> 1015      98    2        0           0        0         0         2
#> 1016      72    2        0           0        0         0         2
#> 1017      48    2        0           0        0         0         2
#> 1018      50    5        0           0        0         0         5
#> 1019      84    3        0           0        1         0         2
#> 1020      16    7        0           0        0         0         7
#> 1021     114    2        0           0        0         0         2
#> 1022      72    2        0           0        0         0         2
#> 1023     100    3        0           0        0         0         3
#> 1024      32   11        2           0        0         0        11
#> 1025      60    2        0           0        0         0         2
#> 1026     100    2        0           0        0         0         2
#> 1027     240    2        0           0        0         0         2
#> 1028      24    5        3           0        4         0         1
#> 1029      64    3        0           0        2         0         1
#> 1030      35    3        0           0        1         0         2
#> 1031      64    4        0           0        1         0         3
#> 1032     344    8        1           0        3         0         5
#> 1033     344   17        2           9        0         0         7
#> 1034      30    2        0           0        1         0         1
#> 1035      70    1        0           0        0         0         1
#> 1036     120    2        0           0        0         0         2
#> 1037      19    2        0           0        0         0         2
#> 1038      23    3        1           0        1         0         2
#> 1039    1000    5        0           0        0         0         5
#> 1040     400    3        0           0        0         0         3
#> 1041     141    1        0           0        0         0         1
#> 1042      48    4        0           0        0         0         4
#> 1043     192    8        1           0        0         0         8
#> 1044      20    3        1           0        2         0         1
#> 1045      21    1        0           0        0         0         1
#> 1046      21    3        0           0        0         0         3
#> 1047      21    4        0           0        0         0         4
#> 1048      50    1        0           1        0         0         0
#> 1049      50    1        0           0        0         0         1
#> 1050      50    2        0           0        0         0         2
#> 1051      50    1        0           0        1         0         0
#> 1052      50    1        0           1        0         0         0
#> 1053      50    1        0           0        1         0         0
#> 1054      50    8        0           0        0         0         8
#> 1055    3177    2        0           0        0         0         2
#> 1056    3310    2        0           0        0         0         2
#> 1057     289    2        0           0        0         0         2
#> 1058    2820    2        0           0        0         0         2
#> 1059      47    6        0           0        0         0         6
#> 1060     132    5        0           0        1         0         4
#> 1061      32    5        3           0        4         0         1
#> 1062      60    3        1           0        1         0         2
#> 1063    7980    2        0           0        0         0         2
#> 1064      31    3        0           0        0         0         3
#> 1065      24    4        2           0        3         0         1
#> 1066     192    2        0           0        0         0         2
#> 1067     108    2        0           0        0         0         2
#> 1068      72    2        0           0        0         0         2
#> 1069      50    4        0           0        0         0         4
#> 1070      45    1        0           0        0         0         1
#> 1071      43   12        0           0        0         0        12
#> 1072       5    5        0           0        0         0         5
#> 1073      19    2        0           0        0         0         2
#> 1074       5    4        0           0        0         0         4
#> 1075      87   61        0           0        0         0        61
#> 1076      54    3        1           0        2         0         1
#> 1077      15    2        0           0        0         0         2
#> 1078       7    7        0           0        0         0         7
#> 1079     100    2        0           0        0         0         2
#> 3240    2000   13        5           0        9         0         4
#> 3241    5534    1        0           0        0         0         1
#> 3242      16    2        0           2        0         0         0
#> 3243    1458    8        0           4        0         0         4
#> 3244     153    6        0           0        0         0         6
#> 3245    2930   82        3           0       43         0        39
#> 3246     150    9        3           0        3         0         6
#> 3247    1000   13        7           7        0         0         6
#> 3248     506   14        1           0        0         0        14
#> 3249      54    6        0           0        2         0         4
#> 3250     500    8        1           0        4         0         4
#> 3251     259   11        0           0        1         0        10
#> 3252     500    8        3           3        2         0         3
#> 3253    3142   15        2           1        4         0        10
#> 3254     705    1        0           1        0         0         0
#> 3255     100    2        0           0        0         0         2
#> 3256      98    7        0           0        1         0         6
#> 3257      37   23        0          12        0         0        11
#> 3258    1922   15        2           8        0         0         6
#> 3259     116   12        0           2        0         0        10
#> 3260     435   24        1          12        0         0        12
#> 3261     910    2        0           0        2         0         0
#> 3262     119    1        1           0        1         0         0
#> 3263      59    3        1           0        1         0         2
#> 3264 1414593    6        2           0        4         1         1
#> 3265     168    5        1           0        4         0         1
#> 3266    1270   19        0           3        0         0        16
#> 3267   12925   13        2          12        0         0         1
#> 3268     494    7        0           6        0         0         1
#> 3269    1000   13        7           0        7         0         6
#> 3270     102    7        1           4        0         0         2
#> 3271   35746    9        0           6        0         0         3
#> 3272     828    2        0           0        2         0         0
#> 3273      23    4        0           0        0         0         4
#> 3274     184   11        1           4        0         0         6
#> 3275     534    8        1           1        4         0         3
#> 3276      70    1        0           0        0         0         1
#> 3277     120    2        0           0        0         0         2
#> 3278      51    7        0           0        2         0         5
#> 3279      26    6        0           0        0         0         6
#> 3280      38   23        4          12        0         0        11
#> 3281   17346    7        0           0        1         0         6
#> 3282      50   12        0           0        1         0        11
#> 3283      50    1        0           1        0         0         0
#> 3284      50    1        0           0        0         0         1
#> 3285      50    2        0           0        0         0         2
#> 3286      50    1        0           0        1         0         0
#> 3287      50    1        0           1        0         0         0
#> 3288      50    1        0           0        1         0         0
#> 3289      50    8        0           0        0         0         8
#> 3290      24    4        2           0        3         0         1
#> 3291      60   12        0           0        0         0        12
#> 3292   10118    9        1           2        1         0         5
#> 3293      11    8        0           0        0         0         8
#> 3294      72    2        0           0        0         0         2
#> 3295      50    4        0           0        0         0         4
#> 3296      45    1        0           0        0         0         1
#> 3297      43   12        0           0        0         0        12
#> 3298       5    5        0           0        0         0         5
#> 3299      19    2        0           0        0         0         2
#> 3300       5    4        0           0        0         0         4
#> 3301     936    7        0           1        0         0         6
#> 3302      15    2        0           0        0         0         2
#>                                                                                                 CSV
#> 806             https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/Abilene_tbl_df.csv
#> 807            https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/Attorney_tbl_df.csv
#> 808                  https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/Boston_df.csv
#> 809           https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/camden_crimes_df.csv
#> 810          https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/corruption_tbl_df.csv
#> 811       https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/crimeHSdegree_tbl_df.csv
#> 812      https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/crimestatewide_tbl_df.csv
#> 813           https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/crimOffenders_df.csv
#> 814              https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/crimtab_table.csv
#> 815   https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/CyberSecurityBreaches_df.csv
#> 816        https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/DeathPenaltyRace_df.csv
#> 817            https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/DrunkDST_tbl_df.csv
#> 818                https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/Fatality_df.csv
#> 819         https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/FBICriminal_tbl_df.csv
#> 820              https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/fraudulent_df.csv
#> 821              https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/Gallup_tbl_df.csv
#> 822                 https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/georgia_sf.csv
#> 823               https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/Hartnagel_df.csv
#> 824         https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/hate_crimes_tbl_df.csv
#> 825         https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/homicides15_tbl_df.csv
#> 826              https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/Inmate_tbl_df.csv
#> 827             https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/NCAdata_tbl_df.csv
#> 828            https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/Ndrangheta_list.csv
#> 829        https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/NigeriaTerrorism_df.csv
#> 830            https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/NVCAdata_tbl_df.csv
#> 831              https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/nz_murders_sf.csv
#> 832    https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/police_shootings_tbl_df.csv
#> 833            https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/rearrests_table.csv
#> 834            https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/Sentence_tbl_df.csv
#> 835              https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/sentencing_sf.csv
#> 836         https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/Suicide_Germany_df.csv
#> 837      https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/TerrorismGlobal_table.csv
#> 838               https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/uk_serial_df.csv
#> 839               https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/USArrests_df.csv
#> 840          https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/USATerror_data_df.csv
#> 841                 https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/UScrime_df.csv
#> 842        https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/UScrimerates_tbl_df.csv
#> 843        https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/USincarcerations_df.csv
#> 844          https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/USJudgeRatings_df.csv
#> 845       https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/vehiclethefts_tbl_df.csv
#> 846                https://vincentarelbundock.github.io/Rdatasets/csv/crimedatasets/wmurders_ts.csv
#> 972                     https://vincentarelbundock.github.io/Rdatasets/csv/datasets/ability.cov.csv
#> 973                        https://vincentarelbundock.github.io/Rdatasets/csv/datasets/airmiles.csv
#> 974                   https://vincentarelbundock.github.io/Rdatasets/csv/datasets/AirPassengers.csv
#> 975                      https://vincentarelbundock.github.io/Rdatasets/csv/datasets/airquality.csv
#> 976                        https://vincentarelbundock.github.io/Rdatasets/csv/datasets/anscombe.csv
#> 977                          https://vincentarelbundock.github.io/Rdatasets/csv/datasets/attenu.csv
#> 978                        https://vincentarelbundock.github.io/Rdatasets/csv/datasets/attitude.csv
#> 979                         https://vincentarelbundock.github.io/Rdatasets/csv/datasets/austres.csv
#> 980                         https://vincentarelbundock.github.io/Rdatasets/csv/datasets/beaver1.csv
#> 981                         https://vincentarelbundock.github.io/Rdatasets/csv/datasets/beaver2.csv
#> 982                         https://vincentarelbundock.github.io/Rdatasets/csv/datasets/BJsales.csv
#> 983                    https://vincentarelbundock.github.io/Rdatasets/csv/datasets/BJsales.lead.csv
#> 984                             https://vincentarelbundock.github.io/Rdatasets/csv/datasets/BOD.csv
#> 985                            https://vincentarelbundock.github.io/Rdatasets/csv/datasets/cars.csv
#> 986                     https://vincentarelbundock.github.io/Rdatasets/csv/datasets/ChickWeight.csv
#> 987                        https://vincentarelbundock.github.io/Rdatasets/csv/datasets/chickwts.csv
#> 988                             https://vincentarelbundock.github.io/Rdatasets/csv/datasets/CO2.csv
#> 989                             https://vincentarelbundock.github.io/Rdatasets/csv/datasets/co2.csv
#> 990                         https://vincentarelbundock.github.io/Rdatasets/csv/datasets/crimtab.csv
#> 991                     https://vincentarelbundock.github.io/Rdatasets/csv/datasets/discoveries.csv
#> 992                           https://vincentarelbundock.github.io/Rdatasets/csv/datasets/DNase.csv
#> 993                           https://vincentarelbundock.github.io/Rdatasets/csv/datasets/esoph.csv
#> 994                            https://vincentarelbundock.github.io/Rdatasets/csv/datasets/euro.csv
#> 995                      https://vincentarelbundock.github.io/Rdatasets/csv/datasets/euro.cross.csv
#> 996                        https://vincentarelbundock.github.io/Rdatasets/csv/datasets/eurodist.csv
#> 997                  https://vincentarelbundock.github.io/Rdatasets/csv/datasets/EuStockMarkets.csv
#> 998                        https://vincentarelbundock.github.io/Rdatasets/csv/datasets/faithful.csv
#> 999                         https://vincentarelbundock.github.io/Rdatasets/csv/datasets/fdeaths.csv
#> 1000                   https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Formaldehyde.csv
#> 1001                         https://vincentarelbundock.github.io/Rdatasets/csv/datasets/freeny.csv
#> 1002                       https://vincentarelbundock.github.io/Rdatasets/csv/datasets/freeny.x.csv
#> 1003                       https://vincentarelbundock.github.io/Rdatasets/csv/datasets/freeny.y.csv
#> 1004                           https://vincentarelbundock.github.io/Rdatasets/csv/datasets/gait.csv
#> 1005                   https://vincentarelbundock.github.io/Rdatasets/csv/datasets/HairEyeColor.csv
#> 1006                   https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Harman23.cor.csv
#> 1007                   https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Harman74.cor.csv
#> 1008                       https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Indometh.csv
#> 1009                         https://vincentarelbundock.github.io/Rdatasets/csv/datasets/infert.csv
#> 1010                   https://vincentarelbundock.github.io/Rdatasets/csv/datasets/InsectSprays.csv
#> 1011                           https://vincentarelbundock.github.io/Rdatasets/csv/datasets/iris.csv
#> 1012                          https://vincentarelbundock.github.io/Rdatasets/csv/datasets/iris3.csv
#> 1013                        https://vincentarelbundock.github.io/Rdatasets/csv/datasets/islands.csv
#> 1014                 https://vincentarelbundock.github.io/Rdatasets/csv/datasets/JohnsonJohnson.csv
#> 1015                      https://vincentarelbundock.github.io/Rdatasets/csv/datasets/LakeHuron.csv
#> 1016                        https://vincentarelbundock.github.io/Rdatasets/csv/datasets/ldeaths.csv
#> 1017                             https://vincentarelbundock.github.io/Rdatasets/csv/datasets/lh.csv
#> 1018               https://vincentarelbundock.github.io/Rdatasets/csv/datasets/LifeCycleSavings.csv
#> 1019                       https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Loblolly.csv
#> 1020                        https://vincentarelbundock.github.io/Rdatasets/csv/datasets/longley.csv
#> 1021                           https://vincentarelbundock.github.io/Rdatasets/csv/datasets/lynx.csv
#> 1022                        https://vincentarelbundock.github.io/Rdatasets/csv/datasets/mdeaths.csv
#> 1023                         https://vincentarelbundock.github.io/Rdatasets/csv/datasets/morley.csv
#> 1024                         https://vincentarelbundock.github.io/Rdatasets/csv/datasets/mtcars.csv
#> 1025                         https://vincentarelbundock.github.io/Rdatasets/csv/datasets/nhtemp.csv
#> 1026                           https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Nile.csv
#> 1027                         https://vincentarelbundock.github.io/Rdatasets/csv/datasets/nottem.csv
#> 1028                            https://vincentarelbundock.github.io/Rdatasets/csv/datasets/npk.csv
#> 1029             https://vincentarelbundock.github.io/Rdatasets/csv/datasets/occupationalStatus.csv
#> 1030                         https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Orange.csv
#> 1031                  https://vincentarelbundock.github.io/Rdatasets/csv/datasets/OrchardSprays.csv
#> 1032                       https://vincentarelbundock.github.io/Rdatasets/csv/datasets/penguins.csv
#> 1033                   https://vincentarelbundock.github.io/Rdatasets/csv/datasets/penguins_raw.csv
#> 1034                    https://vincentarelbundock.github.io/Rdatasets/csv/datasets/PlantGrowth.csv
#> 1035                         https://vincentarelbundock.github.io/Rdatasets/csv/datasets/precip.csv
#> 1036                     https://vincentarelbundock.github.io/Rdatasets/csv/datasets/presidents.csv
#> 1037                       https://vincentarelbundock.github.io/Rdatasets/csv/datasets/pressure.csv
#> 1038                      https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Puromycin.csv
#> 1039                         https://vincentarelbundock.github.io/Rdatasets/csv/datasets/quakes.csv
#> 1040                          https://vincentarelbundock.github.io/Rdatasets/csv/datasets/randu.csv
#> 1041                         https://vincentarelbundock.github.io/Rdatasets/csv/datasets/rivers.csv
#> 1042                           https://vincentarelbundock.github.io/Rdatasets/csv/datasets/rock.csv
#> 1043                      https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Seatbelts.csv
#> 1044                          https://vincentarelbundock.github.io/Rdatasets/csv/datasets/sleep.csv
#> 1045                     https://vincentarelbundock.github.io/Rdatasets/csv/datasets/stack.loss.csv
#> 1046                        https://vincentarelbundock.github.io/Rdatasets/csv/datasets/stack.x.csv
#> 1047                      https://vincentarelbundock.github.io/Rdatasets/csv/datasets/stackloss.csv
#> 1048                      https://vincentarelbundock.github.io/Rdatasets/csv/datasets/state.abb.csv
#> 1049                     https://vincentarelbundock.github.io/Rdatasets/csv/datasets/state.area.csv
#> 1050                   https://vincentarelbundock.github.io/Rdatasets/csv/datasets/state.center.csv
#> 1051                 https://vincentarelbundock.github.io/Rdatasets/csv/datasets/state.division.csv
#> 1052                     https://vincentarelbundock.github.io/Rdatasets/csv/datasets/state.name.csv
#> 1053                   https://vincentarelbundock.github.io/Rdatasets/csv/datasets/state.region.csv
#> 1054                      https://vincentarelbundock.github.io/Rdatasets/csv/datasets/state.x77.csv
#> 1055                  https://vincentarelbundock.github.io/Rdatasets/csv/datasets/sunspot.m2014.csv
#> 1056                  https://vincentarelbundock.github.io/Rdatasets/csv/datasets/sunspot.month.csv
#> 1057                   https://vincentarelbundock.github.io/Rdatasets/csv/datasets/sunspot.year.csv
#> 1058                       https://vincentarelbundock.github.io/Rdatasets/csv/datasets/sunspots.csv
#> 1059                          https://vincentarelbundock.github.io/Rdatasets/csv/datasets/swiss.csv
#> 1060                         https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Theoph.csv
#> 1061                        https://vincentarelbundock.github.io/Rdatasets/csv/datasets/Titanic.csv
#> 1062                    https://vincentarelbundock.github.io/Rdatasets/csv/datasets/ToothGrowth.csv
#> 1063                       https://vincentarelbundock.github.io/Rdatasets/csv/datasets/treering.csv
#> 1064                          https://vincentarelbundock.github.io/Rdatasets/csv/datasets/trees.csv
#> 1065                  https://vincentarelbundock.github.io/Rdatasets/csv/datasets/UCBAdmissions.csv
#> 1066                 https://vincentarelbundock.github.io/Rdatasets/csv/datasets/UKDriverDeaths.csv
#> 1067                          https://vincentarelbundock.github.io/Rdatasets/csv/datasets/UKgas.csv
#> 1068                    https://vincentarelbundock.github.io/Rdatasets/csv/datasets/USAccDeaths.csv
#> 1069                      https://vincentarelbundock.github.io/Rdatasets/csv/datasets/USArrests.csv
#> 1070                      https://vincentarelbundock.github.io/Rdatasets/csv/datasets/UScitiesD.csv
#> 1071                 https://vincentarelbundock.github.io/Rdatasets/csv/datasets/USJudgeRatings.csv
#> 1072          https://vincentarelbundock.github.io/Rdatasets/csv/datasets/USPersonalExpenditure.csv
#> 1073                          https://vincentarelbundock.github.io/Rdatasets/csv/datasets/uspop.csv
#> 1074                       https://vincentarelbundock.github.io/Rdatasets/csv/datasets/VADeaths.csv
#> 1075                        https://vincentarelbundock.github.io/Rdatasets/csv/datasets/volcano.csv
#> 1076                     https://vincentarelbundock.github.io/Rdatasets/csv/datasets/warpbreaks.csv
#> 1077                          https://vincentarelbundock.github.io/Rdatasets/csv/datasets/women.csv
#> 1078                    https://vincentarelbundock.github.io/Rdatasets/csv/datasets/WorldPhones.csv
#> 1079                       https://vincentarelbundock.github.io/Rdatasets/csv/datasets/WWWusage.csv
#> 3240                 https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/acs12_tbl_df.csv
#> 3241            https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/age_at_mar_tbl_df.csv
#> 3242              https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/airlines_tbl_df.csv
#> 3243              https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/airports_tbl_df.csv
#> 3244                https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/airquality_df.csv
#> 3245                  https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/ames_tbl_df.csv
#> 3246                https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/births_tbl_df.csv
#> 3247              https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/births14_tbl_df.csv
#> 3248                    https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/Boston_df.csv
#> 3249                    https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/Cars93_df.csv
#> 3250                https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/census_tbl_df.csv
#> 3251          https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/cia_factbook_tbl_df.csv
#> 3252               https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/cle_sac_tbl_df.csv
#> 3253                https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/county_tbl_df.csv
#> 3254        https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/env_regulation_tbl_df.csv
#> 3255                  https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/fcid_tbl_df.csv
#> 3256                  https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/goog_tbl_df.csv
#> 3257             https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/govrace10_tbl_df.csv
#> 3258           https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/homicides15_tbl_df.csv
#> 3259                 https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/house_tbl_df.csv
#> 3260           https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/houserace10_tbl_df.csv
#> 3261           https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/immigration_tbl_df.csv
#> 3262              https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/leg_mari_tbl_df.csv
#> 3263              https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/marathon_tbl_df.csv
#> 3264              https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/military_tbl_df.csv
#> 3265                    https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/minn38_df.csv
#> 3266        https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/mlb_players_18_tbl_df.csv
#> 3267    https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/mn_police_use_of_force_df.csv
#> 3268        https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/nba_players_19_tbl_df.csv
#> 3269              https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/ncbirths_tbl_df.csv
#> 3270          https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/nyc_marathon_tbl_df.csv
#> 3271      https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/nycvehiclethefts_tbl_df.csv
#> 3272     https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/offshore_drilling_tbl_df.csv
#> 3273                https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/orings_tbl_df.csv
#> 3274                https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/oscars_tbl_df.csv
#> 3275                https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/piracy_tbl_df.csv
#> 3276               https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/precip_numeric.csv
#> 3277                https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/presidents_ts.csv
#> 3278              https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/prrace08_tbl_df.csv
#> 3279                      https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/road_df.csv
#> 3280          https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/senaterace10_tbl_df.csv
#> 3281       https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/sp500_1950_2018_tbl_df.csv
#> 3282                 https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/sp500_tbl_df.csv
#> 3283          https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/state_abb_character.csv
#> 3284           https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/state_area_numeric.csv
#> 3285            https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/state_center_list.csv
#> 3286        https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/state_division_factor.csv
#> 3287         https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/state_name_character.csv
#> 3288          https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/state_region_factor.csv
#> 3289             https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/state_x77_matrix.csv
#> 3290          https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/UCBAdmissions_table.csv
#> 3291   https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/us_crime_rates_spec_tbl_df.csv
#> 3292               https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/us_temp_tbl_df.csv
#> 3293        https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/us_time_survey_tbl_df.csv
#> 3294               https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/USAccDeaths_ts.csv
#> 3295                 https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/USArrests_df.csv
#> 3296               https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/UScitiesD_dist.csv
#> 3297            https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/USJudgeRatings_df.csv
#> 3298 https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/USPersonalExpenditure_matrix.csv
#> 3299                     https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/uspop_ts.csv
#> 3300              https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/VADeaths_matrix.csv
#> 3301      https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/voter_count_spec_tbl_df.csv
#> 3302                     https://vincentarelbundock.github.io/Rdatasets/csv/usdatasets/women_df.csv
#>                                                                                                  Doc
#> 806             https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/Abilene_tbl_df.html
#> 807            https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/Attorney_tbl_df.html
#> 808                  https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/Boston_df.html
#> 809           https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/camden_crimes_df.html
#> 810          https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/corruption_tbl_df.html
#> 811       https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/crimeHSdegree_tbl_df.html
#> 812      https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/crimestatewide_tbl_df.html
#> 813           https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/crimOffenders_df.html
#> 814              https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/crimtab_table.html
#> 815   https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/CyberSecurityBreaches_df.html
#> 816        https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/DeathPenaltyRace_df.html
#> 817            https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/DrunkDST_tbl_df.html
#> 818                https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/Fatality_df.html
#> 819         https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/FBICriminal_tbl_df.html
#> 820              https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/fraudulent_df.html
#> 821              https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/Gallup_tbl_df.html
#> 822                 https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/georgia_sf.html
#> 823               https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/Hartnagel_df.html
#> 824         https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/hate_crimes_tbl_df.html
#> 825         https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/homicides15_tbl_df.html
#> 826              https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/Inmate_tbl_df.html
#> 827             https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/NCAdata_tbl_df.html
#> 828            https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/Ndrangheta_list.html
#> 829        https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/NigeriaTerrorism_df.html
#> 830            https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/NVCAdata_tbl_df.html
#> 831              https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/nz_murders_sf.html
#> 832    https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/police_shootings_tbl_df.html
#> 833            https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/rearrests_table.html
#> 834            https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/Sentence_tbl_df.html
#> 835              https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/sentencing_sf.html
#> 836         https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/Suicide_Germany_df.html
#> 837      https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/TerrorismGlobal_table.html
#> 838               https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/uk_serial_df.html
#> 839               https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/USArrests_df.html
#> 840          https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/USATerror_data_df.html
#> 841                 https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/UScrime_df.html
#> 842        https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/UScrimerates_tbl_df.html
#> 843        https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/USincarcerations_df.html
#> 844          https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/USJudgeRatings_df.html
#> 845       https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/vehiclethefts_tbl_df.html
#> 846                https://vincentarelbundock.github.io/Rdatasets/doc/crimedatasets/wmurders_ts.html
#> 972                     https://vincentarelbundock.github.io/Rdatasets/doc/datasets/ability.cov.html
#> 973                        https://vincentarelbundock.github.io/Rdatasets/doc/datasets/airmiles.html
#> 974                   https://vincentarelbundock.github.io/Rdatasets/doc/datasets/AirPassengers.html
#> 975                      https://vincentarelbundock.github.io/Rdatasets/doc/datasets/airquality.html
#> 976                        https://vincentarelbundock.github.io/Rdatasets/doc/datasets/anscombe.html
#> 977                          https://vincentarelbundock.github.io/Rdatasets/doc/datasets/attenu.html
#> 978                        https://vincentarelbundock.github.io/Rdatasets/doc/datasets/attitude.html
#> 979                         https://vincentarelbundock.github.io/Rdatasets/doc/datasets/austres.html
#> 980                         https://vincentarelbundock.github.io/Rdatasets/doc/datasets/beaver1.html
#> 981                         https://vincentarelbundock.github.io/Rdatasets/doc/datasets/beaver2.html
#> 982                         https://vincentarelbundock.github.io/Rdatasets/doc/datasets/BJsales.html
#> 983                    https://vincentarelbundock.github.io/Rdatasets/doc/datasets/BJsales.lead.html
#> 984                             https://vincentarelbundock.github.io/Rdatasets/doc/datasets/BOD.html
#> 985                            https://vincentarelbundock.github.io/Rdatasets/doc/datasets/cars.html
#> 986                     https://vincentarelbundock.github.io/Rdatasets/doc/datasets/ChickWeight.html
#> 987                        https://vincentarelbundock.github.io/Rdatasets/doc/datasets/chickwts.html
#> 988                             https://vincentarelbundock.github.io/Rdatasets/doc/datasets/CO2.html
#> 989                             https://vincentarelbundock.github.io/Rdatasets/doc/datasets/co2.html
#> 990                         https://vincentarelbundock.github.io/Rdatasets/doc/datasets/crimtab.html
#> 991                     https://vincentarelbundock.github.io/Rdatasets/doc/datasets/discoveries.html
#> 992                           https://vincentarelbundock.github.io/Rdatasets/doc/datasets/DNase.html
#> 993                           https://vincentarelbundock.github.io/Rdatasets/doc/datasets/esoph.html
#> 994                            https://vincentarelbundock.github.io/Rdatasets/doc/datasets/euro.html
#> 995                      https://vincentarelbundock.github.io/Rdatasets/doc/datasets/euro.cross.html
#> 996                        https://vincentarelbundock.github.io/Rdatasets/doc/datasets/eurodist.html
#> 997                  https://vincentarelbundock.github.io/Rdatasets/doc/datasets/EuStockMarkets.html
#> 998                        https://vincentarelbundock.github.io/Rdatasets/doc/datasets/faithful.html
#> 999                         https://vincentarelbundock.github.io/Rdatasets/doc/datasets/fdeaths.html
#> 1000                   https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Formaldehyde.html
#> 1001                         https://vincentarelbundock.github.io/Rdatasets/doc/datasets/freeny.html
#> 1002                       https://vincentarelbundock.github.io/Rdatasets/doc/datasets/freeny.x.html
#> 1003                       https://vincentarelbundock.github.io/Rdatasets/doc/datasets/freeny.y.html
#> 1004                           https://vincentarelbundock.github.io/Rdatasets/doc/datasets/gait.html
#> 1005                   https://vincentarelbundock.github.io/Rdatasets/doc/datasets/HairEyeColor.html
#> 1006                   https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Harman23.cor.html
#> 1007                   https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Harman74.cor.html
#> 1008                       https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Indometh.html
#> 1009                         https://vincentarelbundock.github.io/Rdatasets/doc/datasets/infert.html
#> 1010                   https://vincentarelbundock.github.io/Rdatasets/doc/datasets/InsectSprays.html
#> 1011                           https://vincentarelbundock.github.io/Rdatasets/doc/datasets/iris.html
#> 1012                          https://vincentarelbundock.github.io/Rdatasets/doc/datasets/iris3.html
#> 1013                        https://vincentarelbundock.github.io/Rdatasets/doc/datasets/islands.html
#> 1014                 https://vincentarelbundock.github.io/Rdatasets/doc/datasets/JohnsonJohnson.html
#> 1015                      https://vincentarelbundock.github.io/Rdatasets/doc/datasets/LakeHuron.html
#> 1016                        https://vincentarelbundock.github.io/Rdatasets/doc/datasets/ldeaths.html
#> 1017                             https://vincentarelbundock.github.io/Rdatasets/doc/datasets/lh.html
#> 1018               https://vincentarelbundock.github.io/Rdatasets/doc/datasets/LifeCycleSavings.html
#> 1019                       https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Loblolly.html
#> 1020                        https://vincentarelbundock.github.io/Rdatasets/doc/datasets/longley.html
#> 1021                           https://vincentarelbundock.github.io/Rdatasets/doc/datasets/lynx.html
#> 1022                        https://vincentarelbundock.github.io/Rdatasets/doc/datasets/mdeaths.html
#> 1023                         https://vincentarelbundock.github.io/Rdatasets/doc/datasets/morley.html
#> 1024                         https://vincentarelbundock.github.io/Rdatasets/doc/datasets/mtcars.html
#> 1025                         https://vincentarelbundock.github.io/Rdatasets/doc/datasets/nhtemp.html
#> 1026                           https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Nile.html
#> 1027                         https://vincentarelbundock.github.io/Rdatasets/doc/datasets/nottem.html
#> 1028                            https://vincentarelbundock.github.io/Rdatasets/doc/datasets/npk.html
#> 1029             https://vincentarelbundock.github.io/Rdatasets/doc/datasets/occupationalStatus.html
#> 1030                         https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Orange.html
#> 1031                  https://vincentarelbundock.github.io/Rdatasets/doc/datasets/OrchardSprays.html
#> 1032                       https://vincentarelbundock.github.io/Rdatasets/doc/datasets/penguins.html
#> 1033                   https://vincentarelbundock.github.io/Rdatasets/doc/datasets/penguins_raw.html
#> 1034                    https://vincentarelbundock.github.io/Rdatasets/doc/datasets/PlantGrowth.html
#> 1035                         https://vincentarelbundock.github.io/Rdatasets/doc/datasets/precip.html
#> 1036                     https://vincentarelbundock.github.io/Rdatasets/doc/datasets/presidents.html
#> 1037                       https://vincentarelbundock.github.io/Rdatasets/doc/datasets/pressure.html
#> 1038                      https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Puromycin.html
#> 1039                         https://vincentarelbundock.github.io/Rdatasets/doc/datasets/quakes.html
#> 1040                          https://vincentarelbundock.github.io/Rdatasets/doc/datasets/randu.html
#> 1041                         https://vincentarelbundock.github.io/Rdatasets/doc/datasets/rivers.html
#> 1042                           https://vincentarelbundock.github.io/Rdatasets/doc/datasets/rock.html
#> 1043                      https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Seatbelts.html
#> 1044                          https://vincentarelbundock.github.io/Rdatasets/doc/datasets/sleep.html
#> 1045                     https://vincentarelbundock.github.io/Rdatasets/doc/datasets/stack.loss.html
#> 1046                        https://vincentarelbundock.github.io/Rdatasets/doc/datasets/stack.x.html
#> 1047                      https://vincentarelbundock.github.io/Rdatasets/doc/datasets/stackloss.html
#> 1048                      https://vincentarelbundock.github.io/Rdatasets/doc/datasets/state.abb.html
#> 1049                     https://vincentarelbundock.github.io/Rdatasets/doc/datasets/state.area.html
#> 1050                   https://vincentarelbundock.github.io/Rdatasets/doc/datasets/state.center.html
#> 1051                 https://vincentarelbundock.github.io/Rdatasets/doc/datasets/state.division.html
#> 1052                     https://vincentarelbundock.github.io/Rdatasets/doc/datasets/state.name.html
#> 1053                   https://vincentarelbundock.github.io/Rdatasets/doc/datasets/state.region.html
#> 1054                      https://vincentarelbundock.github.io/Rdatasets/doc/datasets/state.x77.html
#> 1055                  https://vincentarelbundock.github.io/Rdatasets/doc/datasets/sunspot.m2014.html
#> 1056                  https://vincentarelbundock.github.io/Rdatasets/doc/datasets/sunspot.month.html
#> 1057                   https://vincentarelbundock.github.io/Rdatasets/doc/datasets/sunspot.year.html
#> 1058                       https://vincentarelbundock.github.io/Rdatasets/doc/datasets/sunspots.html
#> 1059                          https://vincentarelbundock.github.io/Rdatasets/doc/datasets/swiss.html
#> 1060                         https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Theoph.html
#> 1061                        https://vincentarelbundock.github.io/Rdatasets/doc/datasets/Titanic.html
#> 1062                    https://vincentarelbundock.github.io/Rdatasets/doc/datasets/ToothGrowth.html
#> 1063                       https://vincentarelbundock.github.io/Rdatasets/doc/datasets/treering.html
#> 1064                          https://vincentarelbundock.github.io/Rdatasets/doc/datasets/trees.html
#> 1065                  https://vincentarelbundock.github.io/Rdatasets/doc/datasets/UCBAdmissions.html
#> 1066                 https://vincentarelbundock.github.io/Rdatasets/doc/datasets/UKDriverDeaths.html
#> 1067                          https://vincentarelbundock.github.io/Rdatasets/doc/datasets/UKgas.html
#> 1068                    https://vincentarelbundock.github.io/Rdatasets/doc/datasets/USAccDeaths.html
#> 1069                      https://vincentarelbundock.github.io/Rdatasets/doc/datasets/USArrests.html
#> 1070                      https://vincentarelbundock.github.io/Rdatasets/doc/datasets/UScitiesD.html
#> 1071                 https://vincentarelbundock.github.io/Rdatasets/doc/datasets/USJudgeRatings.html
#> 1072          https://vincentarelbundock.github.io/Rdatasets/doc/datasets/USPersonalExpenditure.html
#> 1073                          https://vincentarelbundock.github.io/Rdatasets/doc/datasets/uspop.html
#> 1074                       https://vincentarelbundock.github.io/Rdatasets/doc/datasets/VADeaths.html
#> 1075                        https://vincentarelbundock.github.io/Rdatasets/doc/datasets/volcano.html
#> 1076                     https://vincentarelbundock.github.io/Rdatasets/doc/datasets/warpbreaks.html
#> 1077                          https://vincentarelbundock.github.io/Rdatasets/doc/datasets/women.html
#> 1078                    https://vincentarelbundock.github.io/Rdatasets/doc/datasets/WorldPhones.html
#> 1079                       https://vincentarelbundock.github.io/Rdatasets/doc/datasets/WWWusage.html
#> 3240                 https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/acs12_tbl_df.html
#> 3241            https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/age_at_mar_tbl_df.html
#> 3242              https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/airlines_tbl_df.html
#> 3243              https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/airports_tbl_df.html
#> 3244                https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/airquality_df.html
#> 3245                  https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/ames_tbl_df.html
#> 3246                https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/births_tbl_df.html
#> 3247              https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/births14_tbl_df.html
#> 3248                    https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/Boston_df.html
#> 3249                    https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/Cars93_df.html
#> 3250                https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/census_tbl_df.html
#> 3251          https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/cia_factbook_tbl_df.html
#> 3252               https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/cle_sac_tbl_df.html
#> 3253                https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/county_tbl_df.html
#> 3254        https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/env_regulation_tbl_df.html
#> 3255                  https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/fcid_tbl_df.html
#> 3256                  https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/goog_tbl_df.html
#> 3257             https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/govrace10_tbl_df.html
#> 3258           https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/homicides15_tbl_df.html
#> 3259                 https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/house_tbl_df.html
#> 3260           https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/houserace10_tbl_df.html
#> 3261           https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/immigration_tbl_df.html
#> 3262              https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/leg_mari_tbl_df.html
#> 3263              https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/marathon_tbl_df.html
#> 3264              https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/military_tbl_df.html
#> 3265                    https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/minn38_df.html
#> 3266        https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/mlb_players_18_tbl_df.html
#> 3267    https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/mn_police_use_of_force_df.html
#> 3268        https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/nba_players_19_tbl_df.html
#> 3269              https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/ncbirths_tbl_df.html
#> 3270          https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/nyc_marathon_tbl_df.html
#> 3271      https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/nycvehiclethefts_tbl_df.html
#> 3272     https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/offshore_drilling_tbl_df.html
#> 3273                https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/orings_tbl_df.html
#> 3274                https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/oscars_tbl_df.html
#> 3275                https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/piracy_tbl_df.html
#> 3276               https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/precip_numeric.html
#> 3277                https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/presidents_ts.html
#> 3278              https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/prrace08_tbl_df.html
#> 3279                      https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/road_df.html
#> 3280          https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/senaterace10_tbl_df.html
#> 3281       https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/sp500_1950_2018_tbl_df.html
#> 3282                 https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/sp500_tbl_df.html
#> 3283          https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/state_abb_character.html
#> 3284           https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/state_area_numeric.html
#> 3285            https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/state_center_list.html
#> 3286        https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/state_division_factor.html
#> 3287         https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/state_name_character.html
#> 3288          https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/state_region_factor.html
#> 3289             https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/state_x77_matrix.html
#> 3290          https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/UCBAdmissions_table.html
#> 3291   https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/us_crime_rates_spec_tbl_df.html
#> 3292               https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/us_temp_tbl_df.html
#> 3293        https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/us_time_survey_tbl_df.html
#> 3294               https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/USAccDeaths_ts.html
#> 3295                 https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/USArrests_df.html
#> 3296               https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/UScitiesD_dist.html
#> 3297            https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/USJudgeRatings_df.html
#> 3298 https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/USPersonalExpenditure_matrix.html
#> 3299                     https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/uspop_ts.html
#> 3300              https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/VADeaths_matrix.html
#> 3301      https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/voter_count_spec_tbl_df.html
#> 3302                     https://vincentarelbundock.github.io/Rdatasets/doc/usdatasets/women_df.html

# Search only in dataset names
rdsearch("iris", field = "dataset")
#>       Package Dataset                      Title Rows Cols n_binary n_character
#> 1011 datasets    iris Edgar Anderson's Iris Data  150    5        0           0
#> 1012 datasets   iris3 Edgar Anderson's Iris Data   50   12        0           0
#>      n_factor n_logical n_numeric
#> 1011        1         0         4
#> 1012        0         0        12
#>                                                                        CSV
#> 1011  https://vincentarelbundock.github.io/Rdatasets/csv/datasets/iris.csv
#> 1012 https://vincentarelbundock.github.io/Rdatasets/csv/datasets/iris3.csv
#>                                                                         Doc
#> 1011  https://vincentarelbundock.github.io/Rdatasets/doc/datasets/iris.html
#> 1012 https://vincentarelbundock.github.io/Rdatasets/doc/datasets/iris3.html

# Search only in titles
rdsearch("Edgar Anderson", field = "title")
#>       Package Dataset                      Title Rows Cols n_binary n_character
#> 1011 datasets    iris Edgar Anderson's Iris Data  150    5        0           0
#> 1012 datasets   iris3 Edgar Anderson's Iris Data   50   12        0           0
#>      n_factor n_logical n_numeric
#> 1011        1         0         4
#> 1012        0         0        12
#>                                                                        CSV
#> 1011  https://vincentarelbundock.github.io/Rdatasets/csv/datasets/iris.csv
#> 1012 https://vincentarelbundock.github.io/Rdatasets/csv/datasets/iris3.csv
#>                                                                         Doc
#> 1011  https://vincentarelbundock.github.io/Rdatasets/doc/datasets/iris.html
#> 1012 https://vincentarelbundock.github.io/Rdatasets/doc/datasets/iris3.html