new_fcoex {fcoex} | R Documentation |
Create a fcoex object
new_fcoex(expression = data.frame(), target = vector())
expression |
Normalized gene expression table from single-cells
|
target |
Original target classes for the cells ( |
Object of class fcoex
# Create new fcoex object library(SingleCellExperiment) data("mini_pbmc3k") targets <- colData(mini_pbmc3k)$clusters exprs <- as.data.frame(assay(mini_pbmc3k, "logcounts")) fc <- new_fcoex(exprs, targets)