| sample_genes {CellBench} | R Documentation |
Sample n genes from a SingleCellExperiment object with no replacement
sample_genes(x, n)
x |
the SingleCellExperiment object |
n |
the number of genes to sample |
SingleCellExperiment object
sample_sce_data <- readRDS(cellbench_file("10x_sce_sample.rds"))
dim(sample_sce_data)
x <- sample_genes(sample_sce_data, 50)
dim(x)