4/27/2022

Old Faithful Data Analysis Report

Old Faithful Data Analysis Report

Data presented using the Shiny App, displayed in an RMarkdown presentation.

Application Overview

  • Waiting Time Properties can be analyzed using Parameters.
  • Time to next eruption and frequency of eruption are the parameters.
  • This Report enables you to scroll to number of bins to change the histogram.

Slide with Complete Reporting Appliaction

Data Used

The data used for this application is from the Old Faithful dataset in R.

library("ggplot2")
summary(faithful)
##    eruptions        waiting    
##  Min.   :1.600   Min.   :43.0  
##  1st Qu.:2.163   1st Qu.:58.0  
##  Median :4.000   Median :76.0  
##  Mean   :3.488   Mean   :70.9  
##  3rd Qu.:4.454   3rd Qu.:82.0  
##  Max.   :5.100   Max.   :96.0