The Old Faithful Geyser is the most predictable and arguably the most famous Geyser in the Yellow Stone National Park in Wyoming. The datasets package in R gives access to a data set named 'faithful' that has 272 records of wait times against prior eruption durations, over a period of itme. The App outputs exploratory charts and predicts the wait time before next eruption, based on a predictive model fitted on this data.
- User can enter the last eruption duration
- App outputs the predicted wait time based on a regression model
- The wait time (waiting) is the target variable and previous eruption duration (eruptions) is the predictor: lm(waiting ~ eruptions, data = faithful)
- App also displays scatter plots, regression line and histograms
- Visit Old Faithful App
- Please read the 'about' tab for details on how to use the app