RDatasets.jl
RDatasets.jl copied to clipboard
Julia package for loading many of the data sets available in R
The `dplyr` datasets don't seem to be included in the package, despite being available at https://vincentarelbundock.github.io/Rdatasets/articles/data.html ```julia-repl julia> starwars = dataset("dplyr","starwars") ERROR: Unable to locate dataset file ```
ATM, the state dataset from Datasets is missing.
Are there instructions somewhere to add a new dataset? I am missing this dataset: https://github.com/cran/compositions/raw/master/data/juraset.rda"
For this package all the CSV files are relatively small I think. CSV is a heavy dependency, on startup. It pays off if you load large CSV files. I was...
`nycflights13` is listed [here](https://github.com/vincentarelbundock/Rdatasets/blob/master/datasets.csv). So if we pull from master and re-made the artifact this should be there.
I would like to have `RDatasets.description(package_name, dataset_name)` show the content of the corresponding html file in the docs folder. This is an attempt to add this functionality.
This PR fixes https://github.com/JuliaStats/RDatasets.jl/issues/117 - and does not seem to break the tests. It specifies the file format explicitly when loading ".rda" files instead of relying on the automatic discovery...
I teach a class using ISLR, helped by the RDatasets package, which has worked fine this semester so far, until in the past few days, it suddenly stopped working for...
[StatLog(German Credit Data)](https://archive.ics.uci.edu/ml/datasets/statlog+(german+credit+data))
Given how simple the idea of the package is, I still find it kind of hard to use. That's mainly because I always forget what the exact names of datasets...