View source: R/wrap_add_linear_trajectory.R
add_linear_trajectory | R Documentation |
Constructs a linear trajectory using pseudotime values
add_linear_trajectory(
dataset,
pseudotime,
directed = FALSE,
do_scale_minmax = TRUE,
...
)
dataset |
A dataset created by |
pseudotime |
A named vector of pseudo times. |
directed |
Whether the trajectory will be directed. |
do_scale_minmax |
Whether or not to scale the pseudotime between 0 and 1. Otherwise, will assume the values are already within that range. |
... |
extra information to be stored in the trajectory |
A trajectory object
library(tibble)
dataset <- wrap_data(cell_ids = letters)
pseudotime <- tibble(
cell_id = dataset$cell_ids,
pseudotime = runif(length(dataset$cell_ids))
)
trajectory <- add_linear_trajectory(dataset, pseudotime)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.