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
While it is easy to run install.packages('fivethirtyeightdata', repos = 'https://fivethirtyeightdata.github.io/drat/', type = 'source'), it would be simpler to have something like a get_larger_datasets() function that we could have pop up after people have run library(fivethirtyeight) as a message letting them know. The function could just directly be a wrapper as well:
get_larger_datasets <- function() {
install.packages(
'fivethirtyeightdata',
repos = 'https://fivethirtyeightdata.github.io/drat/',
type = 'source'
)
message("Remember to use `library(fivethirtyeightdata)` to retrieve any of these larger datasets.")
}
The text was updated successfully, but these errors were encountered:
While it is easy to run
install.packages('fivethirtyeightdata', repos = 'https://fivethirtyeightdata.github.io/drat/', type = 'source')
, it would be simpler to have something like aget_larger_datasets()
function that we could have pop up after people have runlibrary(fivethirtyeight)
as a message letting them know. The function could just directly be a wrapper as well:The text was updated successfully, but these errors were encountered: