The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
The R package dgpsi
provides R interface to Python
package dgpsi
for deep and linked Gaussian process emulations using stochastic
imputation (SI).
Hassle-free Python Setup
You don’t need prior knowledge of Python to start using the package, all you need is a single click in R (see Installation section below) that automatically installs and activates the required Python environment for you!
dgpsi
currently has following features:
You can install the package from CRAN:
install.packages('dgpsi')
or its development version from GitHub:
::install_github('mingdeyu/dgpsi-R') devtools
After the installation, run
library(dgpsi)
to load the package. To install or activate the required Python
environment automatically, you can either run
dgpsi::init_py()
explicitly or simply call any function
from the package. That’s it - the package is ready to use!
Note
After loadingdgpsi
, the package may take some time to compile and initiate the underlying Python environment the first time a function fromdgpsi
is executed. Any subsequent function calls won’t require re-compiling or re-activation of the Python environment, and will be faster.If you experience Python related issues while using the package, please try to reinstall the Python environment:
::init_py(reinstall = T) dgpsi
Or uninstall completely the Python environment:
::init_py(uninstall = T) dgpsi
and then reinstall:
::init_py() dgpsi
This package is part of an ongoing research initiative. For detailed information about the research aspects and guidelines for use, please refer to our Research Notice.
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.