Data Wrangling_week09_shiny

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接: https://blog.csdn.net/cuidiwhere/article/details/79822727

说明:该系列博客为本人目前正在修的Data Wrangling and Husbandry课程笔记。该课的级别为introduction。所以内容范围很广,但都不深。

1. What? 

Shiny is a R package for building interactive web application using R. 

2. 官方 Demo

2.1 http://www.rstudio.com/products/shiny/shiny-user-showcase/  这里有很多好的实例

2.2 shiny package itself includes 11 examples; you can see them with `runExample()`

library(shiny)
runExample("01_hello")

3. 大牛 Zev Ross的blog里有shiny的教程和40个实例

http://zevross.com/blog/2016/04/19/r-powered-web-applications-with-shiny-a-tutorial-and-cheat-sheet-with-40-example-apps/

博客互动留言有一段很有意思

网友问: I’m new to Shiny and was wondering how long it would take to learn how to use Shiny if one has only 6 months of general programming experience?

博主回答:Shiny can be tricky but it depends on your motivation and your goal. With some previous R background you can learn to make simple Shiny apps in a few hours. Ultimately it depends on what you want to accomplish.


参考:

1。shiny官网 http://shiny.rstudio.com/ 

猜你喜欢

转载自blog.csdn.net/cuidiwhere/article/details/79822727
今日推荐