infer VECTOR

infer_vector(object, ...)

# S4 method for class 'list'
infer_vector(object, plot = TRUE, ...)

# S4 method for class 'matrix'
infer_vector(object, filter = FALSE, plot = TRUE, ...)

# S4 method for class 'Seurat'
infer_vector(
  object,
  filter = FALSE,
  plot = TRUE,
  reduction = "umap",
  dims = 2,
  ...
)

Arguments

object

The information of pca and UMAP.

...

Arguments for other methods

plot

Logical value.

filter

Logical value, default set to FALSE, will filter cells though pseudotime.

reduction

The reduction method.

dims

The reduction to use.

Value

vector

Examples

if (FALSE) { # \dontrun{
data("example_matrix")
dimensional_information <- get_embedding(example_matrix)
vector_result <- infer_vector(dimensional_information)
} # }
if (FALSE) { # \dontrun{
data("example_matrix")
vector_result <- infer_vector(
  example_matrix,
  plot = FALSE
)
} # }