Installing additional R package on Azure ML

I am doing the following steps to install R package Hash_2.2.6.zip on Azure ML

  • Download the .zip file as dataset
  • Create a new experiment and add "Execute R Script" for the experiment
  • Zip data file for experiment.
  • Connect dataset in step 3 to "Execute R Script" in step 2
  • Run an experiment to install the package

However, I am getting this error: zip file src/hash_2.2.6.zip not found

Just so it's very clear, I follow the steps mentioned in this article: http://blogs.technet.com/b/saketbi/archive/2014/08/20/microsoft-azure-ml-amp-r-language -extensibility.aspx .

Any help in this regard is greatly appreciated.

+3


source to share


1 answer


To install a package this way, you need to create a .zip.zip. The outer packaging layer will be unpacked into the src / folder when the dataset is passed to the module, and you can install the inner package there.



+5


source







All Articles