Presentation

Mtcars Data Set

Avnish
1/19/2020

First Slide

The Application plots point graph for mileage Vs Variables :

  • Cylinder
  • Transmission
  • Gears

Working:

  • The application is written in Shiny which is a web application framework for R
  • The source code consists of two files: server.R and ui.R
  • server.R includes the the server logic of a Shiny web application
  • ui.R includes the the user-interface definition, which uses the sidebarLayout template
  • The application leverages the ggplot to plot mtcars data set.
  • The application is hosted on Rstudio's shiny server in the cloud (Shinyapps.io)

Plot with cylinders

plot of chunk unnamed-chunk-1

References