-
Notifications
You must be signed in to change notification settings - Fork 51
Squash CI Bugs #7
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ Imports: | |
readr, | ||
MASS, | ||
htmltools, | ||
random, | ||
tidyr, | ||
broom, | ||
cli, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -343,8 +343,8 @@ library(plotly) | |
# Sys.setenv('MAPBOX_TOKEN' = 'your mapbox token') | ||
|
||
# read in wind turbines and farms data | ||
df_wind = read.csv('https://plot.ly/~datasets/2805.csv') | ||
df_farms = read.csv('https://plot.ly/~jackp/17256.csv') | ||
df_wind = read.csv('data/2805.csv') | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why must we in-line this one and not the next one? Seems odd There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The output of the command
Inlining solves the error, which does not appear for There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Weird |
||
df_farms = read.csv('https://plot.ly/~jackp/17256.csv', skipNul = TRUE) | ||
|
||
# subset and clean data | ||
df_sub <- subset(df_wind, manufac != "unknown", select=c(lat_DD, long_DD, manufac)) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any idea why this must be inlined and no other files? Just the download.file command doesn’t work?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I’m fine with inlining, just curious about when we must vs can just continue as was
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When trying to access the file at the URL, the following error is thrown:
I believe SSL is set up correctly in the container, as
libcurl4-openssl-dev
andca-certificates
are both installed. Seems like an issue with the server?