oldfaithful {weird} | R Documentation |
A data set containing data on recorded eruptions of the Old Faithful Geyser in Yellowstone National Park, Wyoming, USA, from 1 January 2015 to 1 October 2021. Recordings are incomplete, especially during the winter months when observers may not be present.
oldfaithful
A data frame with 2261 rows and 3 columns:
Time eruption started
Duration of eruption in seconds
Time to the following eruption
Data frame
oldfaithful |>
filter(duration < 7000, waiting < 7000) |>
ggplot(aes(x = duration, y = waiting)) +
geom_point()