Description Usage Arguments Value See Also Examples
Extract common information from objects.
Apart from the input data's branches,
you can extract diffusion components via $DCx
.
From DPT
objects, you can also extract the branch label via $Branch
,
or the diffusion pseudo time for a numbered cell via $DPTx
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ## S4 method for signature 'DiffusionMap'
names(x)
## S4 method for signature 'DPT'
names(x)
## S4 method for signature 'DiffusionMap,character,missing'
x[[i, j, ...]]
## S4 method for signature 'DPT,character,missing'
x[[i, j, ...]]
## S4 method for signature 'DiffusionMap'
x$name
## S4 method for signature 'DPT'
x$name
|
x |
|
i, name |
Name of a diffusion component |
j |
N/A |
... |
ignored |
The names or data row, see respective generics.
Extract, names
for the generics. DiffusionMap accession methods, DiffusionMap methods, Coercion methods for more
1 2 3 4 5 6 7 8 9 | data(guo)
dm <- DiffusionMap(guo)
dm$DC1 # A diffusion component
dm$Actb # A gene expression vector
dm$num_cells # Phenotype metadata
dpt <- DPT(dm)
dm$Branch
dm$DPT1
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.