This is my Reproducible Pitch Presentation. In this presentation, I describe what I did in my shinyapp project.
The project calculates the prime numbers based on the user input.
June 02, 2016
This is my Reproducible Pitch Presentation. In this presentation, I describe what I did in my shinyapp project.
The project calculates the prime numbers based on the user input.
R function Primes(n) is used for calculating Prime numbers as shown by the snippet below.
library(numbers)
## Warning: package 'numbers' was built under R version 3.2.4
#Output of Primes(20)
Primes(20)
## [1] 2 3 5 7 11 13 17 19
Please have a look at the application at
https://asimkhanal.shinyapps.io/DDPCourseProject/
Thank You!