# NOT RUN {
library(RMLPCA)
data(data_clean)
data(data_error_c)
data(sds_c)
# data that you will usually have on hands
data_noisy <- data_clean + data_error_c
# run mlpca_c with rank p = 5
results <- RMLPCA::mlpca_c(
X = data_noisy,
Xsd = sds_c,
p = 2
)
# estimated clean dataset
data_cleaned_mlpca <- results$U %*% results$S %*% t(results$V)
# }
Run the code above in your browser using DataLab