تقييمات الطلاب
( 5 من 5 )
١ تقييمات
فيديو شرح R Shiny Tutorial ضمن كورس لغة R شرح قناة Unboxing Big Data، الفديو رقم 40 مجانى معتمد اونلاين
Shiny is an open source R package that provides an elegant and powerful web framework for building web applications using R.
Shiny helps you turn your analyses into interactive web applications without requiring HTML, CSS, or JavaScript knowledge.
The basic workflow of Shiny app development is to
write some code,
start the app,
play with the app,
write some more code,
and repeat.
install.packages("shiny")
library(shiny)
runExample("01_hello")
two key components of every Shiny app:
the UI (short for user interface) which defines how your app looks,
and the server function which defines how your app works
Shiny uses reactive programming to automatically update outputs when inputs change