Commonly used R packages

Solved!
VickeyC
Level 3
Commonly used R packages

Is there a list of commonly-used R packages for code recipes that someone could share with me?  We continue to get error messages regarding missing R packages, and it would me much easier if we could just install the ones most likely to be needed at one time.

 


Operating system used: Red Hat

0 Kudos
1 Solution
sergeyd
Dataiker

Hi @VickeyC 

I am quite surprised you got these missing library messages as by default when code env is created with base packages, all the required packages are automatically installed. The base ones: 

 

"dplyr"
"httr"
"RJSONIO"
"gtools"
"base64enc"
"filelock"
"curl"
"IRkernel"

 

So the code env looks like this: 

Screenshot 2022-01-20 at 18.09.56.png

The build-in R code env also includes them: https://doc.dataiku.com/dss/latest/installation/custom/r.html

View solution in original post

0 Kudos
3 Replies
sergeyd
Dataiker

Hi @VickeyC 

It's a kinda wide topic to answer precisely. All the packages can be separated into groups based on their purpose. So it really depends on the task you are trying to accomplish with R recipes.  

0 Kudos
VickeyC
Level 3
Author

I'm looking specifically for packages that are called directly from the dataiku package.  So far we've received errors on missing 'rjsonio' and 'dplyr' packages that were raised in the dataiku package, so we'd just like to install all of the required dependencies at once if there are more.

0 Kudos
sergeyd
Dataiker

Hi @VickeyC 

I am quite surprised you got these missing library messages as by default when code env is created with base packages, all the required packages are automatically installed. The base ones: 

 

"dplyr"
"httr"
"RJSONIO"
"gtools"
"base64enc"
"filelock"
"curl"
"IRkernel"

 

So the code env looks like this: 

Screenshot 2022-01-20 at 18.09.56.png

The build-in R code env also includes them: https://doc.dataiku.com/dss/latest/installation/custom/r.html

0 Kudos