anndict.utils.add_col_to_adata_obs

anndict.utils.add_col_to_adata_obs#

anndict.utils.add_col_to_adata_obs(adata, indices, values, new_col_name)[source]#

Adds a column to adata.obs for given indices.

Parameters:
adata AnnData

An AnnData.

indices list[int] | tuple[int, ...]

Array of indices where labels will be assigned.

values list[int | float | str | bool | Timestamp] | tuple[int | float | str | bool | Timestamp, ...]

Array of labels corresponding to the indices.

new_col_name str

Name of the new column to be created in adata.obs.

Return type:

None

Returns:

None

Notes

Modifies adata in-place.

See also

add_col_to_adata_var()

to add a column to adata.var.

add_col_to_pd_df()

the underlying function that adds a column to a DataFrame.