-
Notifications
You must be signed in to change notification settings - Fork 36
Description
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!