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.
The Application uses
Slide 3 :
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 4:
The application full fills the following
Slide 5 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