
Rust-based PaCMAP
pacmap.RdPerforms PaCMAP dimensionality reduction on the input data. This function provides a user-friendly interface with input validation before calling the Rust implementation.
Usage
pacmap(
data,
knn = NULL,
n_dim = 2L,
knn_method = c("kmknn", "balltree", "hnsw", "annoy", "nndescent", "exhaustive", "ivf"),
nn_params = params_nn(),
pacmap_params = params_pacmap(),
seed = 42L,
use_high_precision = NULL,
.verbose = TRUE
)Arguments
- data
Numerical matrix or data frame. The data to embed of shape samples x features. Will be coerced to a matrix.
- knn
Optional
NearestNeighboursclass. If provided, PaCMAP will skip the k-nearest neighbour graph generation and use this one. Defaults toNULL.- n_dim
Integer. Number of dimensions in the embedding space. Defaults to
2L.- knn_method
Character. (Approximate) Nearest neighbour method to use. One of
"kmknn","hnsw","annoy","nndescent","balltree","ivf"or"exhaustive". Defaults to"kmknn".- nn_params
Named list. Nearest neighbour search parameters, see
params_nn().- pacmap_params
Named list. PaCMAP algorithm parameters, see
params_pacmap(). Controls near/mid-near/further pair counts and the kNN search size (viamn_candidate_end).- seed
Integer. Random seed for reproducibility. Defaults to
42L.- use_high_precision
Optional boolean. Gives fine-grained control over
fp32vsfp64usage.- .verbose
Logical. Controls verbosity. Defaults to
TRUE.