This function wraps installation functions from reticulate to install the Python packages altair and vega_datasets.
character
, indicates to use "conda"
or "virtualenv"
character
, name of environment into which to install
character
, version of Altair to install. For general use of this package,
this is set automatically, so you should not need to specify this.
other arguments sent to reticulate::py_install()
invisible NULL
, called for side-effects
This package uses the reticulate package
to make an interface with the Altair
Python package. To promote consistency in usage of reticulate among
different R packages, it is
recommended
to use a common Python environment, called "r-reticulate"
.
Depending on your setup, you can create this environment using
reticulate::conda_create()
or reticulate::virtualenv_create()
,
as described in this
reticulate article,
or in this package's Installation article.
if (FALSE) {
# not run because it requires Python
install_altair()
}