-
-
Save linearregression/15db5d36b7122f1df6ec to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # alteRyx_install_packages.R | |
| # > code to install packages via R Developer tool in Alteryx(R) module | |
| # > note call to custom Alteryx-R function wrte.Alteryx() | |
| altx.repo <- getOption("repos") | |
| altx.repo["CRAN"] <- "http://cran.rstudio.com" # set your primary repo if you haven't already | |
| options(repos = altx.repo) | |
| #write.Alteryx(getOption("repos"), 1) # DEBUG | |
| install.packages("XML") | |
| require("XML") | |
| rm(altx.repo) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment