일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- RDD
- Graph Tech
- RStudio
- 연합학습
- 빅데이터
- 분산 병렬 처리
- TigerGraph
- 그래프 에코시스템
- 그래프
- BigData
- Cypher
- GraphX
- graph
- TensorFlow
- 그래프 데이터베이스
- Federated Learning
- 인공지능
- graph database
- r
- spark
- GSQL
- Neo4j
- DeepLearning
- Python
- Graph Ecosystem
- 딥러닝
- GDB
- SQL
- 그래프 질의언어
- SparkML
- Today
- Total
Hee'World
샤이니(Shiny) 패키지 본문
샤이니패키지는 최신 웹 브라우저를 사용하여 인터랙티브한 데이터 정리와 질의를 믿기 어려울 정도로 쉽게 할 수 잇는 기능을 제공한다. 샤이니 패키지에는 다양한 위젯이 있어 사용자 인터페이스와 인터랙티브 기능을 쉽고 빠르게 구현할 수 있다. 샤이니 어플리케이션이 가진 디폴트 스타일 자체도 간결하고 효과적이지만 확장이 가능할 뿐더러, HTML과 CSS로 만든 사용자 컨텐츠를 쉽게 통합시킬 수 있다. 샤이니 애플리케이션의 기본 기능을 능가하는 기능을 구현하기 위해 자바스크립트나 제이쿼를 합께 사용할 수 있다.
샤이니 패키지 설치
> install.packages("shiny")
Installing package into ‘C:/Users/JeonJongHee/Documents/R/win-library/3.0’
(as ‘lib’ is unspecified)
also installing the dependencies ‘httpuv’, ‘caTools’, ‘RJSONIO’, ‘xtable’
trying URL 'http://cran.rstudio.com/bin/windows/contrib/3.0/httpuv_1.3.0.zip'
Content type 'application/zip' length 857516 bytes (837 Kb)
opened URL
downloaded 837 Kb
trying URL 'http://cran.rstudio.com/bin/windows/contrib/3.0/caTools_1.17.zip'
Content type 'application/zip' length 227625 bytes (222 Kb)
opened URL
downloaded 222 Kb
trying URL 'http://cran.rstudio.com/bin/windows/contrib/3.0/RJSONIO_1.2-0.2.zip'
Content type 'application/zip' length 1233063 bytes (1.2 Mb)
opened URL
downloaded 1.2 Mb
trying URL 'http://cran.rstudio.com/bin/windows/contrib/3.0/xtable_1.7-3.zip'
Content type 'application/zip' length 388491 bytes (379 Kb)
opened URL
downloaded 379 Kb
trying URL 'http://cran.rstudio.com/bin/windows/contrib/3.0/shiny_0.9.1.zip'
Content type 'application/zip' length 1389796 bytes (1.3 Mb)
opened URL
downloaded 1.3 Mb
package ‘httpuv’ successfully unpacked and MD5 sums checked
package ‘caTools’ successfully unpacked and MD5 sums checked
package ‘RJSONIO’ successfully unpacked and MD5 sums checked
package ‘xtable’ successfully unpacked and MD5 sums checked
package ‘shiny’ successfully unpacked and MD5 sums checked
The downloaded binary packages are in
C:\Users\JeonJongHee\AppData\Local\Temp\RtmpaCZgfb\downloaded_packages
>
샤이니 실행 및 예제1
샤이니 패키지를 불러옵니다.
> library(shiny)
>
아래와 같이 runExample()을 입력하면 shiny예제를 확인 할 수 있습니다.
> runExample()
Valid examples are "01_hello", "02_text", "03_reactivity", "04_mpg", "05_sliders", "06_tabsets", "07_widgets", "08_html", "09_upload", "10_download", "11_timer"
>
> runExample("01_hello")
예제를 실행하면 아래와 같이 웹브라우저가 실행되면서 보여지게 됩니다.
예제 2
>runExample("08_html")
- R과 Shiny 패키지를 활용한 웹 애플리케이션 개발(에이콘) -
'Programming > R' 카테고리의 다른 글
샤이니(Shiny) 함수 (0) | 2014.05.04 |
---|---|
샤이니(Shiny) 패키지 연습1 (0) | 2014.05.01 |
RStudio Server 설치 (0) | 2014.03.29 |
sqldf 함수 (0) | 2014.03.29 |
tapply, aggregate, by 함수 (0) | 2014.03.29 |