You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a user I can apply dimension reduction to a SingleCellExperiment object and access both the factors and the loadings from a LinearEmbeddingMatrix in the reducedDims slot.
Verify the factors matrix U is stored properly
Verify the loadings matrix V is stored properly
Verify there is not an implication in the SingleCellExperiment documentation that UV is supposed to be the mean of the data.
Make clear in the documentation that UV is not a predicted mean of the data.
The text was updated successfully, but these errors were encountered:
note: the offsets, link function, and any row- or column-wise covariates are all needed to be able to make predictions for the mean of the data. Should these be stored in the metadata of the SingleCellExperiment to facilitate prediction? Should we write a predictGLMPCA method? This would be useful for things like molecular cross-validation where they need to reconstruct a "denoised" version of the original data matrix.
I think that if we switch to storing GLM-PCA results as a LinearEmbeddingMatrix, then we should try to keep all the output in that object. So the offsets, link function, etc. could be stored in the metadata slot of the LinearEmbeddingMatrix, rather than the metadata slot of the SingleCellExperiment.
As a user I can apply dimension reduction to a SingleCellExperiment object and access both the factors and the loadings from a LinearEmbeddingMatrix in the reducedDims slot.
The text was updated successfully, but these errors were encountered: