scanpy.pp.log1p
- scanpy.pp.log1p(X, *, base=None, copy=False, chunked=None, 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 :
Union
[AnnData
,ndarray
,spmatrix
] The (annotated) data matrix of shape
n_obs
×n_vars
. Rows correspond to cells and columns to genes.- base :
Optional
[Number
] (default:None
) Base of the logarithm. Natural logarithm is used by default.
- copy :
bool
(default:False
) If an
AnnData
is passed, determines whether a copy is returned.- chunked :
Optional
[bool
] (default:None
) Process the data matrix in chunks, which will save memory. Applies only to
AnnData
.- chunk_size :
Optional
[int
] (default:None
) n_obs
of the chunks to process the data in.- layer :
Optional
[str
] (default:None
) Entry of layers to tranform.
- obsm :
Optional
[str
] (default:None
) Entry of obsm to transform.
- X :
- Returns:
: Returns or updates
data
, depending oncopy
.