RObjectClass

Rds files store R objects, one per file. This label details the class of the R object saved to the Rds file or other similar file types.

Valid value descriptions created by ChatGPT 4o

Valid Values Description Source
Seurat object An R object class designed for single-cell RNA sequencing data, providing tools for data analysis, visualization, and integration. SeuratObject documentation
SummarizedExperiment A matrix-like container where rows represent features of interest (e.g., genes, transcripts) and columns represent samples, used for storing experimental results. Bioconductor
data.frame A table or 2-dimensional array-like structure in R, where each column contains values of one variable and each row contains a set of values from each column. General knowledge
list An R data structure that can hold elements of different types (like numbers, strings, vectors, and other lists), allowing for the storage of complex data sets. General knowledge
matrix A two-dimensional, homogeneous data structure in R, where all elements are of the same type, arranged in rows and columns. General knowledge
sparse matrix A matrix in R that is optimized for storing large datasets with many zero entries, conserving memory by only storing non-zero elements. Wikipedia
vector A basic data structure in R that contains elements of the same type, such as numeric, character, or logical, arranged in a single dimension. General knowledge