diff --git a/R/mfairInitialization.R b/R/mfairInitialization.R index 29afb2f..46608f7 100644 --- a/R/mfairInitialization.R +++ b/R/mfairInitialization.R @@ -12,7 +12,10 @@ #' #' @return Returns MFAIR object, with main data matrix and auxiliary information. #' @export -createMFAIR <- function(Y, X, Y_sparse = FALSE, Y_center = TRUE, K_max = 1L, project = "MFAIR") { +createMFAIR <- function(Y, X, + Y_sparse = FALSE, Y_center = TRUE, + K_max = 1L, + project = "MFAIR") { if (!is.data.frame(X)) { stop("X should be a data.frame!") } # End