JuliaStats / RDatasets.jl

Julia package for loading many of the data sets available in R
GNU General Public License v3.0
160 stars 56 forks source link

read_table not defined #2

Closed simonbyrne closed 11 years ago

simonbyrne commented 11 years ago

Following the instructions in the readme:

julia> load("RDatasets")

Lots of warnings...

julia> using RDatasets

julia> iris = data("datasets", "iris")
in data: read_table not defined
 in data at /Users/simon/.julia/RDatasets/src/data.jl:11
johnmyleswhite commented 11 years ago

Sorry about this: I prematurely released this package without realizing that it depends upon unmerged changes to the DataFrames package.

If you clone my fork of DataFrames with a git clone git@github.com:johnmyleswhite/DataFrames.jl.git, then put that directory into .julia as .julia/DataFrames, the RDatasets package will start to work.

Sorry about the confusion.

johnmyleswhite commented 11 years ago

This is fixed now, although DataFrames is temporarily broken. Closing.