本文介绍了Azure ML Studio中的R版本问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要安装" ompr.roi" 包,这需要R版> = 3.4.0。

I need to install "ompr.roi" package which requires R version >= 3.4.0.

但Azure ML Studio支持R版本直到3.2.2。请参阅下面的截图,

But Azure ML Studio supports R version till 3.2.2. Pls refer below screenshot,

我有什么办法可以在Azure ML Studio中使用这个库。

Is there any way I can use this library in Azure ML Studio.

提前致谢!

谢谢,

Deepak Narayan

Deepak Narayan

推荐答案

您可以下载旧版本的来自CRAN档案的包。

You can download an old version of the package from the CRAN archives.

我会尝试从以下网址下载0.7.0版并查看是否有效:

I would try downloading version 0.7.0 and see if that works, from the following URL:

https:/ /cran.r-project.org/src/contrib/Archive/ompr.roi/ompr.roi_0.7.0.tar.gz

https://cran.r-project.org/src/contrib/Archive/ompr.roi/ompr.roi_0.7.0.tar.gz

0.7.0或0.6.1版本的软件包应与R 3.2.2一起使用。 然后,您可以使用以下方式安装此下载的软件包:

Either 0.7.0 or 0.6.1 version of package should work with R 3.2.2.  You can then install this downloaded package using:

R CMD INSTALL ompr.roi_0.7.0.tar.gz

R CMD INSTALL ompr.roi_0.7.0.tar.gz

希望这会有所帮助。


这篇关于Azure ML Studio中的R版本问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-26 08:38