June 02, 2016

About the Project

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.

How it works

  • User enters a number in the input section.
  • All the prime numbers less than or equal to it are displayed as output

Logic used

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

The Application