Shiny app

John & Charles
28/11/2019

What can we do?

  • Choose a Dataset
  • Select the X variable of the Dataset
  • Select the Y variable of the Dataset
  • Display the plot depending on X and Y

The 3 datasets we can choose

head(iris, 1)
  Sepal.Length Sepal.Width Petal.Length Petal.Width Species
1          5.1         3.5          1.4         0.2  setosa
head(mtcars, 1)
          mpg cyl disp  hp drat   wt  qsec vs am gear carb
Mazda RX4  21   6  160 110  3.9 2.62 16.46  0  1    4    4
head(trees, 1)
  Girth Height Volume
1   8.3     70   10.3

An example of plot

plot of chunk unnamed-chunk-2