-
Notifications
You must be signed in to change notification settings - Fork 29.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Benchmark docs: how to select the CRAN Mirror for R #10204
Comments
Sure, we can specify the mirror, but not everybody lives in the US. I don't think entering a number and pressing enter in the REPL is a big issue. This is what my REPL shows:
|
interesting thing, i don't get that list, but i do get a XQuartz installer pop up, i'll probably add these scenarios to the PR |
Yeah, on OS X for me X11 pops up and I didn't see that at the time because I was using two monitors. |
@lholmquist @Fishrock123 I see, I properly have a custom install of R. |
|
Added the PR: #10211 |
The current benchmark docs showing how to install R packages doesn't go into how to specify a CRAN mirror. This commit shows how to specify the repo parameter when installing a package. fixes: nodejs#10204
The current benchmark docs showing how to install R packages doesn't go into how to specify a CRAN mirror. This commit shows how to specify the repo parameter when installing a package. Fixes: #10204 PR-URL: #10211 Reviewed-By: Andreas Madsen <[email protected]>
The current benchmark docs showing how to install R packages doesn't go into how to specify a CRAN mirror. This commit shows how to specify the repo parameter when installing a package. Fixes: #10204 PR-URL: #10211 Reviewed-By: Andreas Madsen <[email protected]>
docs
In the benchmarks docs, https://github.com/nodejs/node/blob/master/benchmark/README.md, the instructions say to install 2 R packages,
install.packages("ggplot2") install.packages("plyr")
but running those commands in the R repl returns a
--- Please select a CRAN mirror for use in this session ---
should be somehting like this,
install.packages("ggplot2", repos="http://cran.us.r-project.org")
I can add a PR
The text was updated successfully, but these errors were encountered: