You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, running into an issue trying out the anyflights() function. Opened a fresh renv project with only this package and dependents installed. I believe based on the status messages its in the get_planes() part of the function.
For fun I also tried making a folder called "flights_data" in the project and writing to it. Frustratingly I can see the file does exist but it says it cant open it, weird.
It exists:
The text was updated successfully, but these errors were encountered:
Hm, interesting. Could you run this code and paste the results here?
# if needed:# install.packages("reprex")reprex::reprex({
tempfile<- tempfile()
writeLines("This is a test line", tempfile)
zip_tempfile<- tempfile(fileext=".zip")
zip(zip_tempfile, files=tempfile)
unzip(zip_tempfile)
})
Hello, running into an issue trying out the anyflights() function. Opened a fresh renv project with only this package and dependents installed. I believe based on the status messages its in the get_planes() part of the function.
For fun I also tried making a folder called "flights_data" in the project and writing to it. Frustratingly I can see the file does exist but it says it cant open it, weird.
It exists:
The text was updated successfully, but these errors were encountered: