Description Usage Arguments Details Examples
Install Juniper Kernel
1 2 | installJuniper(useJupyterDefault = FALSE, kernelName = defaultKernelName(),
displayName = defaultDisplayName(), prefix = "")
|
useJupyterDefault |
If |
kernelName |
A character string representing the location of the kernel. This is required
to be made up of alphanumeric and |
displayName |
A character string representing the name of the kernel in a client. There are no
restrictions on the display name. The default for R 3.4.0 is |
prefix |
A character string specifying the |
Use this method to install the Juniper Kernel. After a successful invocation
of this method, Juniper will be an available kernel for all Jupyter front-end
clients (e.g., the dropdown selector in the Notebook interface). This method
is essentially a wrapper on the function call jupyter kernelspec install
with some extra configuration options. These options are detailed as the parameters
below. One important note to make is that the kernel will depend the R
environment
that doing the invoking. In this way a user may install kernels for different versions
of R by invoking this installJuniper
method from each respective R. The defaults
for kernelName
and displayName
are good for avoiding namespacing issues
between versions of R, but installs having the same kernel name replace an existing
kernel.
1 2 3 4 | ## Not run:
installJuniper(useJupyterDefault = TRUE) # install into default Jupyter kernel location
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.