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.
Format
A data frame with 2261 rows and 3 columns:
- time
Time eruption started
- duration
Duration of eruption in seconds
- waiting
Time to the following eruption
Examples
oldfaithful |>
filter(duration < 7000, waiting < 7000) |>
ggplot(aes(x = duration, y = waiting)) +
geom_point()