import_module {laminr} | R Documentation |
Import Python modules
Description
This function can be used to import LaminDB Python modules with additional checks and nicer error messages.
Usage
import_module(module, ...)
Arguments
module |
The name of the Python module to import |
... |
Arguments passed on to
|
Details
Python dependencies are set using require_module()
before importing
the module and used to create an ephemeral environment unless another
environment is found (see vignette("versions", package = "reticulate")
).
Value
An object representing a Python package
See Also
-
require_module()
andreticulate::py_require()
for defining Python dependencies -
vignette("versions", package = "reticulate")
for setting the Python environment to use (or online here)
Examples
## Not run:
# Import lamindb to start interacting with an instance
ln <- import_module("lamindb")
# Import lamindb with optional dependencies
ln <- import_module("lamindb", options = c("bionty", "wetlab"))
# Import other LaminDB modules
bt <- import_module("bionty")
wl <- import_module("wetlab")
cc <- import_module("clinicore")
# Import any Python module
np <- import_module("numpy")
## End(Not run)