Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kaushik12 authored Dec 27, 2018
1 parent 8b5cd5c commit 10a3a9c
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,28 @@ Easily discover, collect, and learn to use packages for statiscal modeling. Use
To download this package, ensure you have devtools installed

If not:
`install_packages(‘devtools’)`
```r
install_packages(‘devtools’)
```
Then,

`devtools::install_github(“priism-center/backpack”)`
```r
devtools::install_github(“priism-center/backpack”)
```

To get started with using the package, attach the package to your environment
`library(backpack)`
```r
library(backpack)
```
and then initalize the package with a path in which to store personal binders. For example:
`initialize_backpack("~/Documents/")`
```r
initialize_backpack("~/Documents/")
```

Everytime you load a new R Session, remember to set path for backpack to the one you initialized to. For example:
`set_backpack_path("~/Documents/")`
```r
set_backpack_path("~/Documents/")
```

## Authors
This project was developed as part of the Fall '18 Statistical Consulting course, part of the Applied Statistics for Social Science Research, NYU Steinhardt.
Expand Down

0 comments on commit 10a3a9c

Please sign in to comment.