-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,10 @@ dplyrXdf requires Microsoft R Server release 8.0 or later, and dplyr 0.7 or late | |
If you are using MRS 9.1 or earlier, the necessary packages will not be in the MRAN snapshot that is your default repo. You can install them from CRAN instead: | ||
|
||
```r | ||
install.packages(c("dplyr", "dbplyr", "sparklyr", "odbc"), repos="https://cloud.r-project.org") | ||
install.packages("dplyr", repos="https://cloud.r-project.org") | ||
# optional | ||
install.packages(c("dbplyr", "odbc"), repos="https://cloud.r-project.org") | ||
install.packages(c("dbplyr", "sparklyr"), repos="https://cloud.r-project.org") | ||
``` | ||
|
||
Make sure you install dplyr 0.7 _before_ you install dplyrXdf. | ||
|
@@ -32,4 +35,3 @@ Make sure you install dplyr 0.7 _before_ you install dplyrXdf. | |
The previous version of dplyrXdf, 0.9.2, is also available. You can install this with `install_github("RevolutionAnalytics/[email protected]")`. This version requires dplyr 0.5 or earlier; it may run into problems with dplyr 0.7. | ||
|
||
|
||
|