shiny 初识
shiny是一个R包,能够以网页交互式显示图表。需要两个文件ui.R,server.R。其中ui.R是前端页面展示,server.R是服务请求(响应前端页面请求)。简单的shiny app可以在一个文件里定义ui和server(后面有展示)。
1.安装
install.packages("shiny")
2.运行example
library(shiny)
runExample("01_hello") #此例子就是将ui和server定义在一个文件app.R里。
界面展示如下:
代码如下:
3.案例资源网址
https://github.com/rstudio/shiny-examples #请自行下载案例中的app.R,即可运行。