Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,8 @@ RoxygenNote: 7.2.3
Suggests:
CommutingZones,
rmarkdown
Remotes:
ebenmichael/augsynth,
facebookincubator/CommutingZones
VignetteBuilder: knitr
Roxygen: list(markdown = TRUE)
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,10 @@ GeoLift requires or works with:
- R version 4.0.0 or newer.

## Installing GeoLift
To install the package, first make sure that `remotes` and
`augsynth` are installed.
To install the package, first make sure that `remotes` is installed.

```
install.packages("remotes", repos='http://cran.us.r-project.org')
remotes::install_github("ebenmichael/augsynth")
```

Then, install the package from GitHub:
Expand Down
3 changes: 1 addition & 2 deletions vignettes/GeoLift_Walkthrough.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ You can install `GeoLift` from our [GitHub repository](https://github.com/facebo
```{r install, results="hide", message=F, eval=F}
## Install remotes if noy already installed
install.packages("remotes", repos = "http://cran.us.r-project.org")
## Install augsynth & GeoLift from GitHub
remotes::install_github("ebenmichael/augsynth")
## Install GeoLift from GitHub
remotes::install_github("facebookincubator/GeoLift")
```

Expand Down
8 changes: 1 addition & 7 deletions website/docs/GettingStarted/InstallingR.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,7 @@ Since GeoLift is currently only available on GitHub, the `remotes` package is a
install.packages("remotes", repos='http://cran.us.r-project.org')
```

To install the package, first make sure that remotes and `augsynth` are installed.

```
remotes::install_github("ebenmichael/augsynth")
```

Finally, we can install the `GeoLift` package with the following command:
Then we can install the `GeoLift` package with the following command:

```
remotes::install_github("facebookincubator/GeoLift")
Expand Down