September 9, 2017

Instructions

This peer assessed assignment has two parts.

First, I will create a Shiny application and deploy it on Rstudio's servers.

Second, I will use Slidify or Rstudio Presenter to prepare a reproducible pitch presentation about the application.

About rectangle area Calculation

length = 10
width = 5

area <- length * width

area
## [1] 50

Shiny Application

numericInput: Value of length

numericInput: Value of width

Area value is calculated on server side

Display the calculated Area

Project Links