DevDatProCorPro

Slide 1

Title: Developing Data Products Course Project
Author: Vivek M Date: October 2015

Slide 2

This application is for Developing Data Products Course Project. This application takes two numbers as inputs and displays the product of the multiplication of the two in a dataframe but in form of html5. Here sliders have been choosen as the sources of input.

Slide 3: The Application uses

  • Slider 1 for choosing the first number
  • Slider 2 for choosing the second number
  • How to use App: is for instructions on how to use the application

Slide 4 :
When ever the slider positions are changes, what happens is the values from the ui. R side are stored in the respective variables.
(Refer the github code)
In the server side, using these two values obtained from ui side, are used to find the product of the two numbers.
This is reactive and works for any number of times. The key here was in trying to follow the set guide lines.

Slide 5:
The application full fills the following

  • Some form of input (widget: textbox, radio button, checkbox, …)
  • Some operation on the ui input in sever.R
  • Some reactive output displayed as a result of server calculations
  • include enough documentation so that a novice user could use your application.
  • The documentation should be at the Shiny website itself. Do not post to an external link.

Slide With Code : Demonstrates how App works

Here this multiplication is the calculation happening on the server side based on input from the ui side.

a= 5 
b=6
c= a*b
b
[1] 6