geanders / noaastormevents

explore noaa storm database
14 stars 1 forks source link

Warning with find_events #22

Closed theresekon closed 4 years ago

theresekon commented 4 years ago

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 use tibble::as_tibble() instead."

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.