what is "Shiny"

hi there,

I am new in R. I want to know about "Shiny". what is this? what it's connection with R

thank you
rao

https://shiny.rstudio.com/

Hi,

Although the website above should say it all, here is how I like to think about what the purpose of Shiny is:

Shiny provides a user interface (in the form of a web page) to your R code so that other people can run it without having to actually understand or run your code themselves. Users provide input through the web-interface with things like buttons, textboxes, sliders etc and Shiny will convert them into values to be used in your R code and run the relevant pieces of code. If your code then generates any output, Shiny can push it back to the web interface and display the result (table, plot, text, ...) in a nice format.

Hope this helps,
PJ

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.