Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Azure by (45.3k points)
I want to load the caret library in Azure ML. This works when R version is set to be CRAN R 3.1.0, but on Microsoft R Open 3.2.2 won't work. I must use R Open version because of the other packages that I'm using in my project, which are not supported in that earlier version 3.1.0. Therefore, the question is how to load this library on ML Azure using Microsoft R Open 3.2.2?

Thanks!

1 Answer

0 votes
by (16.8k points)

Seems like the version of the caret package you have used, requires ann  R version >3.1.2. So, I suggest you to use an older version of the package: the caret binary from this 3.1 archive (6.0-68) worked for me. I used these statements to load the package:

install.packages("src/caret_6.0-68.zip", lib=".", repos= NULL, verbose=TRUE)

library("caret", lib.loc=".", verbose=TRUE)

Browse Categories

...