Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/karthik/shiny
Short Shiny tutorial
https://github.com/karthik/shiny
Last synced: about 1 month ago
JSON representation
Short Shiny tutorial
- Host: GitHub
- URL: https://github.com/karthik/shiny
- Owner: karthik
- Created: 2015-05-06T22:11:26.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-06T22:11:43.000Z (over 9 years ago)
- Last Synced: 2024-10-13T19:10:09.317Z (3 months ago)
- Language: R
- Homepage:
- Size: 1.06 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hacker within Shiny introduction
This is a super basic intro to Shiny. I'll walk you through a few examples to get you started.
# Installation
Shiny requires at least R 3.0. With this version or higher, you can install shiny with:
```r
install.packages('shiny')
# If you want to use shinyapps.io
install.packages(shinyapps)
deployApp() # from folder containg app
```# Notes
see [notes.pdf](notes.pdf)