-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to Load Airline Data using RSQLite #63
Comments
When I try to run the reprex I get the same output (and a number of warnings and errors).
Error: Columns
Matrix products: default locale: attached base packages: other attached packages: loaded via a namespace (and not attached): |
Are there any updates on this front? I am also unable to load the full data as the link has expired. |
@beanumber do you know if there is an alternative source for the flight data? Or is the package no longer effectively usable? |
Is this the same link that needs updating (as for nycflights13)? |
I'm trying to load the airlines data and am unable to load the full data -- I'm guessing the link in the etl_extract.R file is broken?
I've demonstrated below what the resulting airlines dataset looks like after loading it using the airlines and etl packages. It manages to successfully get the carrier of the flight, but gives no information on the actual flight (i.e., flight delays, departure and arrival times, cancellation status, etc.).
`reprex::reprex({
suppressPackageStartupMessages(library(mosaic))
suppressPackageStartupMessages(library(airlines))
suppressPackageStartupMessages(library(RSQLite))
airlines <- etl("airlines")
airlines %>%
etl_create(years = 2017, months = 12) %>%
etl_cleanup()
class(airlines)
summary(airlines)
src_tbls(airlines)
})
`
In the vignette for airlines, after running the etl_create() fucntion, the resulting database should include planes, airports, carriers, and flights. (Linked here).
However, the reprex example above only creates a database with one table, carrier. Looking into this a little closer, I noticed that the link called in the etl_extract.R function does not work. That being said, are there any suggestions on loading the data / troubleshooting for this error?
Thanks in advance for any guidance!
The text was updated successfully, but these errors were encountered: