Shiny dashboard with R Shiny

Let Your Friends Know:

rshinyv2

There is a perception that R is built only for data manipulations and data modeling purposes. Reality is that we can make any powerful web based interactive visualization by using R package of Shiny.

How it happens : R-shiny: “shiny” , “shinydashboard” and “shinyjs” are powerful packages and that enables us to develop web based interactive visualization.

#ui.R  :  UI component ( header, body, sidebar)

header <- dashboardHeader( …)

body <- dashboardBody( … )

side <- dashboardSidebar(…)

dashboardPage(header,   body,  side)

#server.R

shinyServer(function(input,output,session){

# all backend activities

}

Once you click “Run App”  on Rstudio,  application/API is ready and then you can republish it on shiny server ( once you have signed up) to make it online..

Sharing some examples :

https://manaswink.shinyapps.io/CardioCare/

https://manaswink.shinyapps.io/SentimentTracker/

https://manaswink.shinyapps.io/TelecomTower

Let Your Friends Know: