1/3
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
What kind of information lives in .uns ?
Miscellaneous data that doesn't fit "one value per cell" or "one value per gene" → e.g. plotting colors, computed graphs, or a record of processing steps applied.
What Python data structure does .uns behave like?
A plain dictionary
You store and retrieve with adata.uns['key'] = value / adata.uns['key'].
What does adata.uns['neighbors'] typically store?
A graph computed by sc.pp.neighbors().
What does adata.uns['log1p'] typically record?
That log normalization was applied to the data.