diff --git a/R/param_initial_umap.R b/R/param_initial_umap.R index c567cc36..03c60110 100644 --- a/R/param_initial_umap.R +++ b/R/param_initial_umap.R @@ -6,10 +6,11 @@ #' more details. #' #' @param values A character string of possible values. See `values_initial_umap` -#' in examples below. +#' in examples below. #' #' @details #' This parameter is used in `recipes` via [embed::step_umap()]. +#' #' @examples #' values_initial_umap #' initial_umap() @@ -26,4 +27,4 @@ initial_umap <- function(values = values_initial_umap) { #' @rdname initial_umap #' @export values_initial_umap <- c("spectral", "normlaplacian", "random", "lvrandom", - "laplacian", "pca", "spca", "agspectral") + "laplacian", "pca", "spca", "agspectral") diff --git a/man/initial_umap.Rd b/man/initial_umap.Rd index bfe4705d..d22a6de1 100644 --- a/man/initial_umap.Rd +++ b/man/initial_umap.Rd @@ -20,7 +20,7 @@ in examples below.} \description{ This parameter is the type of initialization for the UMAP coordinates. Can be one of \code{"spectral"}, \code{"normlaplacian"}, \code{"random"}, \code{"lvrandom"}, -\code{"laplacian"}, \code{"pca"}, \code{"spca"}, or \code{"agspectral"}.See \code{\link[uwot:umap]{uwot::umap()}} for +\code{"laplacian"}, \code{"pca"}, \code{"spca"}, or \code{"agspectral"}. See \code{\link[uwot:umap]{uwot::umap()}} for more details. } \details{ diff --git a/man/target_weight.Rd b/man/target_weight.Rd index 2eaa6527..44c11a2d 100644 --- a/man/target_weight.Rd +++ b/man/target_weight.Rd @@ -22,6 +22,9 @@ between data topology and target topology. A value of 0.0 weights entirely on data, a value of 1.0 weights entirely on target. The default of 0.5 balances the weighting equally between data and target. } +\details{ +This parameter is used in \code{recipes} via \code{\link[embed:step_umap]{embed::step_umap()}}. +} \examples{ target_weight() }