UrbanInstitute / education-data-package-r

https://urbaninstitute.github.io/education-data-package-r/
Other
86 stars 11 forks source link

Processing failure #73

Closed JackLandry closed 3 years ago

JackLandry commented 4 years ago

Thanks for making all this data available! Just started trying to use this with a basic query, but this yields the error "rbind(deparse.level, ...) : numbers of columns of arguments do not match"

`library(educationdata)

school_district_directory <- get_education_data(level = 'school-districts', source = 'ccd', topic = 'directory')`

khueyama commented 4 years ago

Hello @JackLandry - thank you for trying out the package, and sorry you are having issues. Our team is currently working on a fix for this error and I will let you know once that is in place. In the meantime you can try using the csv option, which I believe should work:

library(educationdata)

school_district_directory <- get_education_data(level = 'school-districts',
                                                source = 'ccd',
                                                topic = 'directory',
                                                csv = TRUE)
grahamimac commented 4 years ago

@JackLandry It's been a busy week! The fix for this was deployed last Friday, so your original request should now work as should Kyle's workaround. I hope this helps.