episcanpy.api.pp.log1p¶
- episcanpy.api.pp.log1p(X, *, base=None, copy=False, chunked=None, chunk_size=None, layer=None, obsm=None)¶
- episcanpy.api.pp.log1p(X, *, base=None, copy=False)
- episcanpy.api.pp.log1p(X, *, base=None, copy=False)
- episcanpy.api.pp.log1p(adata, *, base=None, copy=False, chunked=False, chunk_size=None, layer=None, obsm=None)
Logarithmize the data matrix.
Computes \(X = \log(X + 1)\), where \(log\) denotes the natural logarithm unless a different base is given.
- Parameters
- X :
AnnData
|ndarray
|spmatrix
Union
[AnnData
,ndarray
,spmatrix
] The (annotated) data matrix of shape n_obs × n_vars. Rows correspond to cells and columns to genes.
- base :
Number
|None
Optional
[Number
] (default:None
) Base of the logarithm. Natural logarithm is used by default.
- copy :
bool
bool
(default:False
) If an
AnnData
is passed, determines whether a copy is returned.- chunked :
bool
|None
Optional
[bool
] (default:None
) Process the data matrix in chunks, which will save memory. Applies only to
AnnData
.- chunk_size :
int
|None
Optional
[int
] (default:None
) n_obs of the chunks to process the data in.
- layer :
str
|None
Optional
[str
] (default:None
) Entry of layers to tranform.
- obsm :
str
|None
Optional
[str
] (default:None
) Entry of obsm to transform.
- X :
- Returns
Returns or updates data, depending on copy.