Skip to content
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

The JADE package is not automatically installed #1

Closed
wldevries opened this issue Jun 15, 2015 · 4 comments
Closed

The JADE package is not automatically installed #1

wldevries opened this issue Jun 15, 2015 · 4 comments

Comments

@wldevries
Copy link

I had to install it manually in the R console using the command install.packages("JADE")

@dngoins
Copy link
Owner

dngoins commented Jun 15, 2015

In the InitializeR() function in the WPF application, JADE is installed when the .Net R engine proxy is initialized. It assumes you have connectivity to the network. However you can move the install.packages("JADE") command to the script, I just found that sometimes that takes longer to execute and process so I move it outside of the script and into the startup process.

After you manually install it you must load it up in your session with the R command: library(JADE)

HTH

@dngoins dngoins closed this as completed Jun 15, 2015
@cefoot
Copy link

cefoot commented Jun 15, 2015

I had to change the Line:

engine.Evaluate("install.packages('JADE', repos='http://cran.rstudio.com/bin/windows/contrib/3.2/JADE_1.9-92.zip'")

to this line:

engine.Evaluate("install.packages('JADE', repos='http://cran.rstudio.com/')")

than it worked for me ;)

@dngoins
Copy link
Owner

dngoins commented Jun 15, 2015

Oh yes the repository url. I was using the Azure ML R repository URL, because I wanted to see how well the results tested in Azure ML. The one above from cefoot is the standard one for R-Studio.

Thank you cefoot.

@cefoot
Copy link

cefoot commented Jun 15, 2015

you're welcome! And thank you for the great example! ;D

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants