Skip to content

Commit

Permalink
included libraries on README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
andrechalom committed Jul 13, 2015
1 parent d29743d commit fe191e7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ install_github(repo = 'lageIBUSP/Rsampling')
## Web version
You can run Rsampling shiny from github! Just open R and run:
```R
install.packages(c("shiny","shinyBS"))
install.packages(c("shiny","shinyBS", "gridExtra"))
library(shiny)
runGitHub(repo="andrechalom/Rsampling-shiny")
```
Expand Down
2 changes: 2 additions & 0 deletions server.R
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# loads the required libraries.
# when adding libraries here, REMEMBER to include them as requirements on README.md
library(shiny)
library(gridExtra)
library(Rsampling)
Expand Down
2 changes: 2 additions & 0 deletions ui.R
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# loads the required libraries.
# when adding libraries here, REMEMBER to include them as requirements on README.md
library(shiny)
library(shinyBS)
shinyUI(fluidPage(theme= "bootstrap.css",
Expand Down

0 comments on commit fe191e7

Please sign in to comment.