Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
andrechalom committed Jul 1, 2015
1 parent f965de6 commit 206478a
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,19 @@
teaching and learning about resampling in statistics. Rsampling-shiny is a web-based graphical user interface
written in [shiny] (http://shiny.rstudio.com).

To run, you need to install [R] (http://www.r-project.org/). Then, launch R and run
To run, you need to install [R] (http://www.r-project.org/) and the [Rsampling] library (https://github.com/lageIBUSP/Rsampling).

To install Rsampling, open R and run:
```R
install.packages("devtools")
library(devtools)
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","devtools"))
install.packages(c("shiny","shinyBS"))
library(shiny)
runGitHub(repo="andrechalom/Rsampling-shiny")
```
Expand All @@ -19,12 +29,7 @@ file above, and extract it to a folder. Then, open R (with the required packages
library(shiny)
runApp("<path to Rsampling-shiny>")
```

In this case, you will also need to install Rsampling by hand:
```R
library(devtools)
install_github(repo = 'lageIBUSP/Rsampling')
```
Remember that you need to install the shiny/shinyBS packages while you have internet access!

## Current features
* Access the Rsampling sample datafiles, or upload your own data in csv format
Expand Down

0 comments on commit 206478a

Please sign in to comment.