adataobsm
adataobsm refers to the obsm attribute in an AnnData object, a core data container used in the Scanpy ecosystem for single-cell transcriptomics. The obsm attribute stores observation-level multi-dimensional arrays that encode per-cell coordinates or embeddings produced by dimensionality reduction or embedding methods.
Data model: It behaves like a dictionary mapping strings to 2D arrays with shape (n_obs, k). Each
Common usage: Typical keys include X_pca, X_umap, X_tsne, and X_diffmap. The corresponding arrays contain the coordinates
Storage and interoperability: obsm arrays are stored when saving an AnnData to disk (for example in .h5ad
Notes: many analysis steps populate obsm automatically (for example, umap, tsne, and pca computations in Scanpy),