Developing Data Products - Pitch

Shambhavi Malik
23-09-2020

Introduction

This Shiny application shows a bar plot of the Old Faithful Geyser Datset.

The user choose the number of bins via the slider.

More details can be found at:

Visualizing Data

library(datasets)
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  
head(faithful)
  eruptions waiting
1     3.600      79
2     1.800      54
3     3.333      74
4     2.283      62
5     4.533      85
6     2.883      55

Scatter Plot

plot of chunk unnamed-chunk-2

Histogram

plot of chunk unnamed-chunk-3