R/conda_create_env.R

Defines functions conda_create_walking_env

Documented in conda_create_walking_env

#' Create Conda Environment for Walking
#'
#' @param envname environment name
#' @param ... additional arguments to pass to [reticulate::conda_create()]
#'
#' @return Output of [reticulate::conda_create]
#' @export
conda_create_walking_env = function(envname = "stepcount",
                                    ...) {
  reticulate::conda_create(envname = envname, ...)
}

Try the stepcount package in your browser

Any scripts or data that you put into this service are public.

stepcount documentation built on Oct. 2, 2024, 5:07 p.m.