Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# dplyr (development version)

* `storms` has been updated to include 2023 and 2024 data (#7111, @tomalrussell).

* Empty `rowwise()` list-column elements now resolve to `logical()` rather than a random logical of length 1 (#7710).

* `last_dplyr_warnings()` no longer prevents objects from being garbage collected (#7649).
Expand Down
2 changes: 1 addition & 1 deletion data-raw/storms.R
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ library(tidyverse)

# Read in data set so each line is a character string
storm_file_complete <- read_file(
"https://www.nhc.noaa.gov/data/hurdat/hurdat2-1851-2022-050423.txt"
"https://www.nhc.noaa.gov/data/hurdat/hurdat2-1851-2024-040425.txt"
)
storm_strings <- read_lines(storm_file_complete)

Expand Down
Loading