2025-02-08

About This Project

This is my project for my Final Assignment of the Developing Data Products by the John Hopkins University.

Over view

  • Write a shiny application with associated supporting documentation. The documentation should be thought of as whatever a user will need to get started using your application.
  • Deploy the application on Rstudio’s shiny server.
  • Share the application link in my Presentation.
  • Share your server.R and ui.R code on github.

Dataset

The dataset that I have used in my application is the Iris dataset which is a very Simple built in dataset, loved by every R user.

##   Sepal.Length Sepal.Width Petal.Length Petal.Width Species
## 1          5.1         3.5          1.4         0.2  setosa
## 2          4.9         3.0          1.4         0.2  setosa
## 3          4.7         3.2          1.3         0.2  setosa
## 4          4.6         3.1          1.5         0.2  setosa
## 5          5.0         3.6          1.4         0.2  setosa
## 6          5.4         3.9          1.7         0.4  setosa

My Application

The shiny application is very simple as it only takes two inputs:

  • Species : Choose from three different Species of plants
  • Type : Choose either Sepal or Petal

after this it will plot a scatter plot of that specific Specie of plant chosen along with the Length on X-axis & Width on Y-axis of that specic type(Petal or Sepal).

Links