The image shows a Conda paragraph in an OML notebook with the command to create the
environment for R. The environment name is myrenv
. The command also
install the packages forecast
and ggplot2
. The command
is:
%conda
create -n myrenv -c conda-forge --override-channels --strict-channel-priority r-base=4 r-forecast r-ggplot2
This image also shows the messages returned by the command, and the list of R packages
that are installed— R-4.0.5
, forecast
, and
ggplot2
.