2024-07-11

Assignment

The assignement is to develop a app which is working on a host. In this case there is chosen for shinyapps as host. You can find it over here:https://banerjeereethika0616.shinyapps.io/ShinyProject/ The criteria which it should be met are the following:

  • Was there enough documentation on the shiny site for a user to get started using the application?
  • the application run as described in the documentation?
  • Was there some form of widget input (slider, textbox, radio buttons, checkbox, …) in either ui.R or a custom web page?
  • Did server.R perform some calculations on the input in server.R?
  • Was the server calculation displayed in the html page?
  • Was the app substantively different than the very simple applications built in the class? N
  • Here’s your opportunity to give the app +1 for being well done, or neat, or even just a solid effort.

The app

With the random number generator it is easy to get the number of random numers that you would like. In this app it is possible to pick from 0 to 200 random numbers. That is the first step in the app. The second step is to pick an minimum and maximal value for the x axis. So you can select between a range from -200 to 200 to sample from. Simarly this works for the y-axis. With these two axis you can selct the area to sample your random numbers.

Librarys and methods used

Ofcourse we used the library shiny to conduct this app. Secondary there where markdown and knitr.

Where to find all important info

  • The shiny app, consisting in two parts:
  • ui (userinterface)
  • server (server)

Thanks for your time.