Closed theresekon closed 4 years ago
When running find_events(date_range = c("1999-09-14", "1999-09-18")) I get a warning message saying
find_events(date_range = c("1999-09-14", "1999-09-18"))
"tbl_df() is deprecated as of dplyr 1.0.0. Please use tibble::as_tibble() instead."
tbl_df()
tibble::as_tibble()
I then replaced dplyr::tbl_df(storm_data) in R/download.R:88:2 with tibble::as_tibble(storm_data) which got rid of the warning message.
dplyr::tbl_df(storm_data)
tibble::as_tibble(storm_data)
When running
find_events(date_range = c("1999-09-14", "1999-09-18"))
I get a warning message saying"
tbl_df()
is deprecated as of dplyr 1.0.0. Please usetibble::as_tibble()
instead."I then replaced
dplyr::tbl_df(storm_data)
in R/download.R:88:2 withtibble::as_tibble(storm_data)
which got rid of the warning message.