From bedc2450cfc0078ba2d91707757047984d69e34a Mon Sep 17 00:00:00 2001 From: Martin Date: Wed, 16 Oct 2024 00:34:26 +0200 Subject: [PATCH 1/8] get shap_names back --- R/setup.R | 1 + man/finalize_explanation_forecast.Rd | 232 --------------------------- 2 files changed, 1 insertion(+), 232 deletions(-) delete mode 100644 man/finalize_explanation_forecast.Rd diff --git a/R/setup.R b/R/setup.R index dc2055a8..a24d82d7 100644 --- a/R/setup.R +++ b/R/setup.R @@ -533,6 +533,7 @@ get_extra_parameters <- function(internal, type) { internal$parameters$n_groups <- length(group) internal$parameters$group_names <- names(group) internal$parameters$group <- group + internal$parameters$shap_names <- internal$parameters$group_names internal$parameters$n_shapley_values <- internal$parameters$n_groups } else { internal$objects$coal_feature_list <- as.list(seq_len(internal$parameters$n_features)) diff --git a/man/finalize_explanation_forecast.Rd b/man/finalize_explanation_forecast.Rd deleted file mode 100644 index c42c9b78..00000000 --- a/man/finalize_explanation_forecast.Rd +++ /dev/null @@ -1,232 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/finalize_explanation.R -\name{finalize_explanation_forecast} -\alias{finalize_explanation_forecast} -\title{Computes the Shapley values given \code{v(S)}} -\usage{ -finalize_explanation_forecast(vS_list, internal) -} -\arguments{ -\item{vS_list}{List -Output from \code{\link[=compute_vS]{compute_vS()}}} - -\item{internal}{List. -Holds all parameters, data, functions and computed objects used within \code{\link[=explain]{explain()}} -The list contains one or more of the elements \code{parameters}, \code{data}, \code{objects}, \code{iter_list}, \code{timing_list}, -\code{main_timing_list}, \code{output}, \code{iter_timing_list} and \code{iter_results}.} -} -\value{ -Object of class \code{c("shapr", "list")}. Contains the following items: -\describe{ -\item{shapley_values}{data.table with the estimated Shapley values with explained observation in the rows and -features along the columns. -The column \code{none} is the prediction not devoted to any of the features (given by the argument \code{prediction_zero})} -\item{shapley_values_sd}{data.table with the standard deviation of the Shapley values reflecting the uncertainty. -Note that this only reflects the coalition sampling part of the kernelSHAP procedure, and is therefore by -definition 0 when all coalitions is used. -Only present when \code{adaptive = TRUE} and \code{adaptive_arguments$compute_sd=TRUE}.} -\item{internal}{List with the different parameters, data, functions and other output used internally.} -\item{pred_explain}{Numeric vector with the predictions for the explained observations} -\item{MSEv}{List with the values of the MSEv evaluation criterion for the approach. See the -\href{https://norskregnesentral.github.io/shapr/articles/understanding_shapr.html#msev-evaluation-criterion -}{MSEv evaluation section in the vignette for details}.} -\item{timing}{List containing timing information for the different parts of the computation. -\code{init_time} and \code{end_time} gives the time stamps for the start and end of the computation. -\code{total_time_secs} gives the total time in seconds for the complete execution of \code{explain()}. -\code{main_timing_secs} gives the time in seconds for the main computations. -\code{iter_timing_secs} gives for each iteration of the adaptive estimation, the time spent on the different parts -adaptive estimation routine.} -} -} -\description{ -Computes dependence-aware Shapley values for observations in \code{x_explain} from the specified -\code{model} by using the method specified in \code{approach} to estimate the conditional expectation. -} -\details{ -The \code{shapr} package implements kernelSHAP estimation of dependence-aware Shapley values with -eight different Monte Carlo-based approaches for estimating the conditional distributions of the data, namely -\code{"empirical"}, \code{"gaussian"}, \code{"copula"}, \code{"ctree"}, \code{"vaeac"}, \code{"categorical"}, \code{"timeseries"}, and \code{"independence"}. -\code{shapr} has also implemented two regression-based approaches \code{"regression_separate"} and \code{"regression_surrogate"}. -It is also possible to combine the different approaches, see the vignettes for more information. - -The package also supports the computation of causal and asymmetric Shapley values as introduced by -Heskes et al. (2020) and Frye et al. (2020). Asymmetric Shapley values were proposed by Heskes et al. (2020) -as a way to incorporate causal knowledge in the real world by restricting the possible feature -combinations/coalitions when computing the Shapley values to those consistent with a (partial) causal ordering. -Causal Shapley values were proposed by Frye et al. (2020) as a way to explain the total effect of features -on the prediction, taking into account their causal relationships, by adapting the sampling procedure in \code{shapr}. - -The package allows for parallelized computation with progress updates through the tightly connected -\link[future:future]{future::future} and \link[progressr:progressr]{progressr::progressr} packages. See the examples below. -For adaptive estimation (\code{adaptive=TRUE}), intermediate results may also be printed to the console -(according to the \code{verbose} argument). -Moreover, the intermediate results are written to disk. -This combined with adaptive estimation with (optional) intermediate results printed to the console (and temporary -written to disk, and batch computing of the v(S) values, enables fast and accurate estimation of the Shapley values -in a memory friendly manner. -} -\examples{ - -# Load example data -data("airquality") -airquality <- airquality[complete.cases(airquality), ] -x_var <- c("Solar.R", "Wind", "Temp", "Month") -y_var <- "Ozone" - -# Split data into test- and training data -data_train <- head(airquality, -3) -data_explain <- tail(airquality, 3) - -x_train <- data_train[, x_var] -x_explain <- data_explain[, x_var] - -# Fit a linear model -lm_formula <- as.formula(paste0(y_var, " ~ ", paste0(x_var, collapse = " + "))) -model <- lm(lm_formula, data = data_train) - -# Explain predictions -p <- mean(data_train[, y_var]) - -\dontrun{ -# (Optionally) enable parallelization via the future package -if (requireNamespace("future", quietly = TRUE)) { - future::plan("multisession", workers = 2) -} -} - -# (Optionally) enable progress updates within every iteration via the progressr package -if (requireNamespace("progressr", quietly = TRUE)) { - progressr::handlers(global = TRUE) -} - -# Empirical approach -explain1 <- explain( - model = model, - x_explain = x_explain, - x_train = x_train, - approach = "empirical", - prediction_zero = p, - n_MC_samples = 1e2 -) - -# Gaussian approach -explain2 <- explain( - model = model, - x_explain = x_explain, - x_train = x_train, - approach = "gaussian", - prediction_zero = p, - n_MC_samples = 1e2 -) - -# Gaussian copula approach -explain3 <- explain( - model = model, - x_explain = x_explain, - x_train = x_train, - approach = "copula", - prediction_zero = p, - n_MC_samples = 1e2 -) - -# ctree approach -explain4 <- explain( - model = model, - x_explain = x_explain, - x_train = x_train, - approach = "ctree", - prediction_zero = p, - n_MC_samples = 1e2 -) - -# Combined approach -approach <- c("gaussian", "gaussian", "empirical") -explain5 <- explain( - model = model, - x_explain = x_explain, - x_train = x_train, - approach = approach, - prediction_zero = p, - n_MC_samples = 1e2 -) - -# Print the Shapley values -print(explain1$shapley_values) - -# Plot the results -if (requireNamespace("ggplot2", quietly = TRUE)) { - plot(explain1) - plot(explain1, plot_type = "waterfall") -} - -# Group-wise explanations -group_list <- list(A = c("Temp", "Month"), B = c("Wind", "Solar.R")) - -explain_groups <- explain( - model = model, - x_explain = x_explain, - x_train = x_train, - group = group_list, - approach = "empirical", - prediction_zero = p, - n_MC_samples = 1e2 -) -print(explain_groups$shapley_values) - -# Separate and surrogate regression approaches with linear regression models. -# More complex regression models can be used, and we can use CV to -# tune the hyperparameters of the regression models and preprocess -# the data before sending it to the model. See the regression vignette -# (Shapley value explanations using the regression paradigm) for more -# details about the `regression_separate` and `regression_surrogate` approaches. -explain_separate_lm <- explain( - model = model, - x_explain = x_explain, - x_train = x_train, - prediction_zero = p, - approach = "regression_separate", - regression.model = parsnip::linear_reg() -) - -explain_surrogate_lm <- explain( - model = model, - x_explain = x_explain, - x_train = x_train, - prediction_zero = p, - approach = "regression_surrogate", - regression.model = parsnip::linear_reg() -) - -## Adaptive estimation -# For illustration purposes only. By default not used for such small dimensions as here - -# Gaussian approach -explain_adaptive <- explain( - model = model, - x_explain = x_explain, - x_train = x_train, - approach = "gaussian", - prediction_zero = p, - n_MC_samples = 1e2, - adaptive = TRUE, - adaptive_arguments = list(initial_n_coalitions = 10) -) - -} -\references{ -\itemize{ -\item Aas, K., Jullum, M., & Lland, A. (2021). Explaining individual predictions when features are dependent: -More accurate approximations to Shapley values. Artificial Intelligence, 298, 103502. -\item Frye, C., Rowat, C., & Feige, I. (2020). Asymmetric Shapley values: -incorporating causal knowledge into model-agnostic explainability. -Advances in neural information processing systems, 33, 1229-1239. -\item Heskes, T., Sijben, E., Bucur, I. G., & Claassen, T. (2020). Causal shapley values: -Exploiting causal knowledge to explain individual predictions of complex models. -Advances in neural information processing systems, 33, 4778-4789. -\item Olsen, L. H. B., Glad, I. K., Jullum, M., & Aas, K. (2024). A comparative study of methods for estimating -model-agnostic Shapley value explanations. Data Mining and Knowledge Discovery, 1-48. -} -} -\author{ -Martin Jullum, Lars Henry Berge Olsen -} From 0880237b50b6fc6feb38ed45cc60dacfcdd07c2d Mon Sep 17 00:00:00 2001 From: Martin Date: Wed, 16 Oct 2024 10:48:19 +0200 Subject: [PATCH 2/8] adding adaptive_arguments and shapley_reweighting --- R/explain_forecast.R | 5 +++++ man/explain_forecast.Rd | 19 +++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/R/explain_forecast.R b/R/explain_forecast.R index a8c42063..92d62995 100644 --- a/R/explain_forecast.R +++ b/R/explain_forecast.R @@ -96,6 +96,8 @@ explain_forecast <- function(model, prediction_zero, max_n_coalitions = NULL, adaptive = NULL, + adaptive_arguments = list(), + shapley_reweighting = "on_all_cond", group_lags = TRUE, group = NULL, n_MC_samples = 1e3, @@ -134,6 +136,9 @@ explain_forecast <- function(model, type = "forecast", horizon = horizon, adaptive = adaptive, + adaptive_arguments = adaptive_arguments, + shapley_reweighting = shapley_reweighting, + init_time = init_time, y = y, xreg = xreg, train_idx = train_idx, diff --git a/man/explain_forecast.Rd b/man/explain_forecast.Rd index 2325ec77..c3a07622 100644 --- a/man/explain_forecast.Rd +++ b/man/explain_forecast.Rd @@ -17,6 +17,8 @@ explain_forecast( prediction_zero, max_n_coalitions = NULL, adaptive = NULL, + adaptive_arguments = list(), + shapley_reweighting = "on_all_cond", group_lags = TRUE, group = NULL, n_MC_samples = 1000, @@ -95,6 +97,23 @@ coalitions. The process is repeated until the variances are below the threshold. Specifics related to the adaptive process and convergence criterion are set through \code{adaptive_arguments}.} +\item{adaptive_arguments}{Named list. +Specifices the arguments for the adaptive procedure. +See \code{\link[=get_adaptive_arguments_default]{get_adaptive_arguments_default()}} for description of the arguments and their default values.} + +\item{shapley_reweighting}{String. +How to reweight the sampling frequency weights in the kernelSHAP solution after sampling, with the aim of reducing +the randomness and thereby the variance of the Shapley value estimates. +One of \code{'none'}, \code{'on_N'}, \code{'on_all'}, \code{'on_all_cond'} (default). +\code{'none'} means no reweighting, i.e. the sampling frequency weights are used as is. +\code{'on_coal_size'} means the sampling frequencies are averaged over all coalitions of the same size. +\code{'on_N'} means the sampling frequencies are averaged over all coalitions with the same original sampling +probabilities. +\code{'on_all'} means the original sampling probabilities are used for all coalitions. +\code{'on_all_cond'} means the original sampling probabilities are used for all coalitions, while adjusting for the +probability that they are sampled at least once. +This method is preferred as it has performed the best in simulation studies.} + \item{group_lags}{Logical. If \code{TRUE} all lags of each variable are grouped together and explained as a group. If \code{FALSE} all lags of each variable are explained individually.} From a48da258a733825d65a2a829e159f9ebf2f7315d Mon Sep 17 00:00:00 2001 From: Martin Date: Wed, 16 Oct 2024 11:16:42 +0200 Subject: [PATCH 3/8] adding latest forecast testfiles --- tests/testthat/_snaps/forecast-output.md | 3655 +++++++++++++++++ .../forecast_output_ar_numeric.rds | Bin 0 -> 2472 bytes .../forecast_output_arima_numeric.rds | Bin 0 -> 18699 bytes .../forecast_output_arima_numeric_no_lags.rds | Bin 0 -> 2910 bytes .../forecast_output_arima_numeric_no_xreg.rds | Bin 0 -> 2262 bytes ...st_output_forecast_ARIMA_group_numeric.rds | Bin 0 -> 3607 bytes tests/testthat/_snaps/forecast-setup.md | 327 ++ 7 files changed, 3982 insertions(+) create mode 100644 tests/testthat/_snaps/forecast-output.md create mode 100644 tests/testthat/_snaps/forecast-output/forecast_output_ar_numeric.rds create mode 100644 tests/testthat/_snaps/forecast-output/forecast_output_arima_numeric.rds create mode 100644 tests/testthat/_snaps/forecast-output/forecast_output_arima_numeric_no_lags.rds create mode 100644 tests/testthat/_snaps/forecast-output/forecast_output_arima_numeric_no_xreg.rds create mode 100644 tests/testthat/_snaps/forecast-output/forecast_output_forecast_ARIMA_group_numeric.rds create mode 100644 tests/testthat/_snaps/forecast-setup.md diff --git a/tests/testthat/_snaps/forecast-output.md b/tests/testthat/_snaps/forecast-output.md new file mode 100644 index 00000000..1ddbb5f9 --- /dev/null +++ b/tests/testthat/_snaps/forecast-output.md @@ -0,0 +1,3655 @@ +# forecast_output_ar_numeric + + Code + (out <- code) + Message + Note: Feature names extracted from the model contains NA. + Consistency checks between model and data is therefore disabled. + + Success with message: + max_n_coalitions is NULL or larger than or 2^n_features = 4, + and is therefore set to 2^n_features = 4. + + Output + explain_idx horizon none Temp.1 Temp.2 + + 1: 152 1 77.88 -0.3972 -1.3912 + 2: 153 1 77.88 -6.6177 -0.1835 + 3: 152 2 77.88 -0.3285 -1.2034 + 4: 153 2 77.88 -6.0208 -0.3371 + 5: 152 3 77.88 -0.2915 -1.0552 + 6: 153 3 77.88 -5.2122 -0.2553 + +# forecast_output_arima_numeric + + Code + (out <- code) + Message + Note: Feature names extracted from the model contains NA. + Consistency checks between model and data is therefore disabled. + + Success with message: + max_n_coalitions is NULL or larger than or 2^n_features = 128, + and is therefore set to 2^n_features = 128. + + Output + explain_idx horizon none Temp.1 Temp.2 Wind.1 Wind.2 Wind.F1 Wind.F2 + + 1: 149 1 77.88 -0.9588 -5.044 1.0543 -2.8958 -2.6627 NA + 2: 150 1 77.88 1.1553 -3.137 -2.8802 0.7196 -1.4930 NA + 3: 149 2 77.88 0.1327 -5.048 0.3337 -2.8249 -2.3014 -1.1764 + 4: 150 2 77.88 1.6007 -2.399 -2.8146 0.4646 -0.7938 0.4662 + 5: 149 3 77.88 -1.3878 -5.014 0.7964 -1.3881 -1.9652 -0.3295 + 6: 150 3 77.88 1.6690 -2.556 -2.3821 0.3835 -0.8644 -0.1648 + Wind.F3 + + 1: NA + 2: NA + 3: NA + 4: NA + 5: 0.5630 + 6: -0.7615 + +# forecast_output_arima_numeric_no_xreg + + Code + (out <- code) + Message + Note: Feature names extracted from the model contains NA. + Consistency checks between model and data is therefore disabled. + + Success with message: + max_n_coalitions is NULL or larger than or 2^n_features = 4, + and is therefore set to 2^n_features = 4. + + Output + explain_idx horizon none Temp.1 Temp.2 + + 1: 149 1 77.88 -1.7273 -7.033 + 2: 150 1 77.88 -0.2229 -4.492 + 3: 149 2 77.88 -1.7273 -7.033 + 4: 150 2 77.88 -0.2229 -4.492 + 5: 149 3 77.88 -1.7273 -7.033 + 6: 150 3 77.88 -0.2229 -4.492 + +# forecast_output_forecast_ARIMA_group_numeric + + Code + (out <- code) + Message + Note: Feature names extracted from the model contains NA. + Consistency checks between model and data is therefore disabled. + + Success with message: + max_n_coalitions is NULL or larger than or 2^n_groups = 4, + and is therefore set to 2^n_groups = 4. + + Output + explain_idx horizon none Temp Wind + + 1: 149 1 77.88 -5.3063 -5.201 + 2: 150 1 77.88 -1.4435 -4.192 + 3: 149 2 77.88 -3.6824 -7.202 + 4: 150 2 77.88 -0.2568 -3.220 + 5: 149 3 77.88 -6.5216 -2.204 + 6: 150 3 77.88 -1.2125 -3.463 + +# forecast_output_arima_numeric_no_lags + + Code + (out <- code) + Message + Note: Feature names extracted from the model contains NA. + Consistency checks between model and data is therefore disabled. + + Success with message: + max_n_coalitions is NULL or larger than or 2^n_features = 8, + and is therefore set to 2^n_features = 8. + + Condition + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Warning in `matrix()`: + data length [2] is not a sub-multiple or multiple of the number of rows [3] + Output + explain_idx horizon none Wind.F1 Wind.F2 Wind.F3 + + 1: 149 1 77.88 -9.391 NA NA + 2: 150 1 77.88 -4.142 NA NA + 3: 149 2 77.88 -4.699 -4.6989 NA + 4: 150 2 77.88 -2.074 -2.0745 NA + 5: 149 3 77.88 -3.130 -4.6234 -3.130 + 6: 150 3 77.88 -1.381 -0.7147 -1.381 + diff --git a/tests/testthat/_snaps/forecast-output/forecast_output_ar_numeric.rds b/tests/testthat/_snaps/forecast-output/forecast_output_ar_numeric.rds new file mode 100644 index 0000000000000000000000000000000000000000..007cfa0d7af51994a6ac3cb26bbe6b725a83ced0 GIT binary patch literal 2472 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 YzY(X2eW&i*H literal 0 HcmV?d00001 diff --git a/tests/testthat/_snaps/forecast-output/forecast_output_arima_numeric_no_lags.rds b/tests/testthat/_snaps/forecast-output/forecast_output_arima_numeric_no_lags.rds new file mode 100644 index 0000000000000000000000000000000000000000..c11609c32386a1de4a7e89bbc4e5553672b3d450 GIT binary patch literal 2910 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 I$wNc{0276_W&i*H literal 0 HcmV?d00001 diff --git a/tests/testthat/_snaps/forecast-output/forecast_output_arima_numeric_no_xreg.rds b/tests/testthat/_snaps/forecast-output/forecast_output_arima_numeric_no_xreg.rds new file mode 100644 index 0000000000000000000000000000000000000000..1ed626583dcb97de9e9192bc0cb425d6055f274b GIT binary patch literal 2262 zcmV;{2r2g;iwFP!000001MM11j2uU`dZu?i`^zqC2NEIymO#pZ6}vVlPGs+x*fEYj zc)i~B=3~mWGc~h~d%D}*J?mNf5KD021|kY5NJtilb0j1VAi+jL0)$W`&WOO31Bnly z5I{Rrb-&kLUEAYbn~lAeW~4XO^*&XvUcdM1)3rQI2q_Y?SRlnA@koXiFTU{kX9R94 zBE+Snj0q?SctgPVa!RBd00n>|z__H>7P{T53n7uEcjdL8Y*$CQjsN_3^4;hDc5~wo z-}=VY#oo`htE1f8PkrXkZygvv{PyI(o_z98w|}u+oe;AS>2H#%9Jj;TJP;2Pkr86# z2=96}vm9zQx_~OLy1sS8b)afGuEXKEbdk5c>6uJzR_mtfyVs|&D{05VE%Ddu_5Q8v zQ@2@w`V;^;++ZP_4%v#$Gnl3?TGSetoVJ{h`wp|G18z5c-W15k0X6}4eXz3C0{Br> zJ`KGj1`v#vZ`GMCwFd_x@DhvC8RSndfo{|$2>vz`+_!5)X~USiL;BU#{`9_$S|#CA z6|OX0pVwIs=J4gUXCNOTx$VV9%*aNDs@!#qDNY~LW`^&jJl&*U7(LLV0($JT94oY# zO&wZynJu1OCjiQbCGSv_=py2k538+GW4>xML7Z4VnCuDflo6LK0fVAQJBRg22d8YTTxSfA9D ziJ)S`Y7>Z35@)=E#!?Y17|m0_hjCTdL0rY$?|~$?IxdGP>_J5Y2mG2wHCI@`0XGK2 z7*m{}SOX8Jt=x{vtg{qQ&)8uSl3vd^4UWZFMsllIQimE%JK@jk z%g~;;MCIIj&FDw6Q8^NOd|4rOhZ@)u;?tS!BBbM)7XH)vid3prpGK_ z+GCY@Q3TqS(*oLKo}gH9)ZXB}yG=qEYWZ%*ON09C^KpY58LA@CSy*395N5!616#ey zd8`3#%Ji^+LYBx#>)~oLH;uTRP^1R&25(??F~fC_>k$WuBvOjntc9IEadzRv8tpii z=%y`3(O#j~xz$5No3J}X~@?`9R-2stIh_=21xNlsgD#`wga4YH$2CNsh0^rz0-MbuB?UMGVX8N|r$#R&S; zAomXZ>O9#MzslVd-6anel6-oLM8`bs7+=)e*ulw;DP{5waCWfh&*WKI!u*lcVNUtK z$G7=##+T8%l)qWc*^ZRNg4k)`4yN4AtcI)IWVM{mfmJArJJYS8@{}F1_!o;sy?Rep z&urm0b4Gu!)+!=LW{**hjvteC`4}9}*nCa$#67D%rSH9QZm$B)O!1NJOprH$PWrc# z_^4VpLB`PW(hpT2@#fro?T&mb|EOO{;At<8NhggQTOM@IV9uOG2ThzHaFg?(WcL@C1IfG;ayqHs(3f!k$ZaUNsjP^m5<~Wh|esW{*A0I&s?vASI z7bnYU@GhKL5dFIqrRkZq`d+0IR-rBhS4>aHE%%*k#6N|)45O3QIAU33}g7s|wuP15%^O%l|D)0{{CH0QD2 zBX>M9sUI{vqyv%ML*~)ED=+FT2KCMwM6G`7Ehiad&UvHQE2H0_vNcc{?;~n=1kL0Q z<$U+I|1AD~q;~$ZUt-@qexNpg@|~rz*59}AT?h{S@U2p_HqSmdvT@+U+JzT?`o{jL zt9!q_%!?`C#h)u4U1i}6ozd#Enfk0opVjCGHTpq8e{fUbLmc0}UZ2yUaZ0t2#O%76 zLhe_Jp+=Zq>Kbo^nX6t~#qh53u*amSLhdJ*#-ssp4s}<)&g;o7tE#+?nwb#eTU8{@ z93^x*bgJ#@eX_w5%GE47bLcS6%ZWv^3}5`hHVjG&v)i?h&!Dt$aJv=`=2#pL8OL+4 kcUAC?IXb1h8<>7J%XR)C*%IbF6IUkx1EN@osGcwY01Whaa{vGU literal 0 HcmV?d00001 diff --git a/tests/testthat/_snaps/forecast-output/forecast_output_forecast_ARIMA_group_numeric.rds b/tests/testthat/_snaps/forecast-output/forecast_output_forecast_ARIMA_group_numeric.rds new file mode 100644 index 0000000000000000000000000000000000000000..ad5d14dcebb63873744efc62d2ad631e54702fb3 GIT binary patch literal 3607 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 + 1: 149 1 77.88 -2.297 -2.540 -1.366e+00 -1.821e+00 -2.483e+00 + 2: 150 1 77.88 2.103 -1.587 -1.397e+00 -1.863e+00 -2.892e+00 + 3: 149 2 77.88 -7.307 1.332 -7.471e-08 -1.139e+00 -2.278e+00 + 4: 150 2 77.88 -3.021 2.374 -7.391e-08 -1.165e+00 -2.330e+00 + 5: 149 3 77.88 -7.313 -4.369 2.285e+00 1.559e-07 6.062e-08 + 6: 150 3 77.88 -3.028 -3.458 2.337e+00 1.620e-07 6.315e-08 + Wind.F2 Wind.F3 + + 1: NA NA + 2: NA NA + 3: -1.493e+00 NA + 4: 6.661e-01 NA + 5: -9.219e-08 0.6726 + 6: -9.643e-08 -0.5269 + +--- + + Code + horizon <- 3 + explain_y_lags <- 2 + explain_xreg_lags <- 2 + n_coalitions <- 1 + 1 + explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, + "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, + explain_y_lags = explain_y_lags, explain_xreg_lags = explain_xreg_lags, + horizon = horizon, approach = "independence", prediction_zero = p0_ar, + n_batches = 1, max_n_coalitions = n_coalitions, group_lags = TRUE) + Message + Note: Feature names extracted from the model contains NA. + Consistency checks between model and data is therefore disabled. + + Success with message: + max_n_coalitions is smaller than or n_groups = 2, + and is therefore set to n_groups + 1 = 3. + + Output + explain_idx horizon none Temp Wind + + 1: 149 1 77.88 -9.390 -1.117 + 2: 150 1 77.88 -4.141 -1.494 + 3: 149 2 77.88 -7.113 -3.771 + 4: 150 2 77.88 -1.812 -1.664 + 5: 149 3 77.88 -7.113 -1.612 + 6: 150 3 77.88 -1.812 -2.864 + +# erroneous input: `train_idx` + + Code + train_idx_too_short <- 2 + explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, + "Temp"], xreg = data[, "Wind"], train_idx = train_idx_too_short, explain_idx = 149: + 150, explain_y_lags = 2, explain_xreg_lags = 2, horizon = 3, approach = "independence", + prediction_zero = p0_ar, n_batches = 1) + Condition + Error in `get_parameters()`: + ! `train_idx` must be a vector of positive finite integers and length > 1. + +--- + + Code + train_idx_not_integer <- c(3:5) + 0.1 + explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, + "Temp"], xreg = data[, "Wind"], train_idx = train_idx_not_integer, explain_idx = 149: + 150, explain_y_lags = 2, explain_xreg_lags = 2, horizon = 3, approach = "independence", + prediction_zero = p0_ar, n_batches = 1) + Condition + Error in `get_parameters()`: + ! `train_idx` must be a vector of positive finite integers and length > 1. + +--- + + Code + train_idx_out_of_range <- 1:5 + explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, + "Temp"], xreg = data[, "Wind"], train_idx = train_idx_out_of_range, + explain_idx = 149:150, explain_y_lags = 2, explain_xreg_lags = 2, horizon = 3, + approach = "independence", prediction_zero = p0_ar, n_batches = 1) + Condition + Error in `get_data_forecast()`: + ! The train (`train_idx`) and explain (`explain_idx`) indices must fit in the lagged data. + The lagged data begins at index 2 and ends at index 150. + +# erroneous input: `explain_idx` + + Code + explain_idx_not_integer <- c(3:5) + 0.1 + explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, + "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = explain_idx_not_integer, + explain_y_lags = 2, explain_xreg_lags = 2, horizon = 3, approach = "independence", + prediction_zero = p0_ar, n_batches = 1) + Condition + Error in `get_parameters()`: + ! `explain_idx` must be a vector of positive finite integers. + +--- + + Code + explain_idx_out_of_range <- 1:5 + explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, + "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = explain_idx_out_of_range, + explain_y_lags = 2, explain_xreg_lags = 2, horizon = 3, approach = "independence", + prediction_zero = p0_ar, n_batches = 1) + Condition + Error in `get_data_forecast()`: + ! The train (`train_idx`) and explain (`explain_idx`) indices must fit in the lagged data. + The lagged data begins at index 2 and ends at index 150. + +# erroneous input: `explain_y_lags` + + Code + explain_y_lags_negative <- -1 + explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, + "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, + explain_y_lags = explain_y_lags_negative, explain_xreg_lags = 2, horizon = 3, + approach = "independence", prediction_zero = p0_ar, n_batches = 1) + Condition + Error in `get_parameters()`: + ! `explain_y_lags` must be a vector of positive finite integers. + +--- + + Code + explain_y_lags_not_integer <- 2.1 + explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, + "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, + explain_y_lags = explain_y_lags_not_integer, explain_xreg_lags = 2, horizon = 3, + approach = "independence", prediction_zero = p0_ar, n_batches = 1) + Condition + Error in `get_parameters()`: + ! `explain_y_lags` must be a vector of positive finite integers. + +--- + + Code + explain_y_lags_more_than_one <- c(1, 2) + explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, + "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, + explain_y_lags = explain_y_lags_more_than_one, explain_xreg_lags = 2, horizon = 3, + approach = "independence", prediction_zero = p0_ar, n_batches = 1) + Condition + Error in `get_data_forecast()`: + ! `y` has 1 columns (Temp). + `explain_y_lags` has length 2. + These two should match. + +--- + + Code + explain_y_lags_zero <- 0 + explain_forecast(testing = TRUE, model = model_arima_temp_noxreg, y = data[1: + 150, "Temp"], train_idx = 2:148, explain_idx = 149:150, explain_y_lags = 0, + horizon = 3, approach = "independence", prediction_zero = p0_ar, n_batches = 1) + Condition + Error in `get_data_forecast()`: + ! `explain_y_lags=0` is not allowed for models without exogeneous variables + +# erroneous input: `explain_x_lags` + + Code + explain_xreg_lags_negative <- -2 + explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, + "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, + explain_y_lags = 2, explain_xreg_lags = explain_xreg_lags_negative, horizon = 3, + approach = "independence", prediction_zero = p0_ar, n_batches = 1) + Condition + Error in `get_parameters()`: + ! `explain_xreg_lags` must be a vector of positive finite integers. + +--- + + Code + explain_xreg_lags_not_integer <- 2.1 + explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, + "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, + explain_y_lags = 2, explain_xreg_lags = explain_xreg_lags_not_integer, horizon = 3, + approach = "independence", prediction_zero = p0_ar, n_batches = 1) + Condition + Error in `get_parameters()`: + ! `explain_xreg_lags` must be a vector of positive finite integers. + +--- + + Code + explain_x_lags_wrong_length <- c(1, 2) + explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, + "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, + explain_y_lags = 2, explain_xreg_lags = explain_x_lags_wrong_length, horizon = 3, + approach = "independence", prediction_zero = p0_ar, n_batches = 1) + Condition + Error in `get_data_forecast()`: + ! `xreg` has 1 columns (Wind). + `explain_xreg_lags` has length 2. + These two should match. + +# erroneous input: `horizon` + + Code + horizon_negative <- -2 + explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, + "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, + explain_y_lags = 2, explain_xreg_lags = 2, horizon = horizon_negative, + approach = "independence", prediction_zero = p0_ar, n_batches = 1) + Condition + Error in `get_parameters()`: + ! `horizon` must be a vector (or scalar) of positive integers. + +--- + + Code + horizon_not_integer <- 2.1 + explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, + "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, + explain_y_lags = 2, explain_xreg_lags = 2, horizon = horizon_not_integer, + approach = "independence", prediction_zero = p0_ar, n_batches = 1) + Condition + Error in `get_parameters()`: + ! `horizon` must be a vector (or scalar) of positive integers. + From 5d3029845ff123f06c272ef8c31601488dc54b20 Mon Sep 17 00:00:00 2001 From: Martin Date: Wed, 16 Oct 2024 11:37:15 +0200 Subject: [PATCH 4/8] remove n_batches --- tests/testthat/test-forecast-setup.R | 68 ++++++++++------------------ 1 file changed, 23 insertions(+), 45 deletions(-) diff --git a/tests/testthat/test-forecast-setup.R b/tests/testthat/test-forecast-setup.R index 552c614a..52ff4d6d 100644 --- a/tests/testthat/test-forecast-setup.R +++ b/tests/testthat/test-forecast-setup.R @@ -19,8 +19,7 @@ test_that("error with custom model without providing predict_model", { explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, - n_batches = 1 + prediction_zero = p0_ar ) }, error = TRUE @@ -47,9 +46,8 @@ test_that("erroneous input: `x_train/x_explain`", { explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, - n_batches = 1 - ) + prediction_zero = p0_ar + ) }, error = TRUE ) @@ -70,9 +68,8 @@ test_that("erroneous input: `x_train/x_explain`", { explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, - n_batches = 1 - ) + prediction_zero = p0_ar + ) }, error = TRUE ) @@ -94,9 +91,8 @@ test_that("erroneous input: `x_train/x_explain`", { explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, - n_batches = 1 - ) + prediction_zero = p0_ar + ) }, error = TRUE ) @@ -118,8 +114,7 @@ test_that("erroneous input: `model`", { explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, - n_batches = 1 + prediction_zero = p0_ar ) }, error = TRUE @@ -146,8 +141,7 @@ test_that("erroneous input: `prediction_zero`", { explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_wrong_length, - n_batches = 1 + prediction_zero = p0_wrong_length ) }, error = TRUE @@ -177,7 +171,6 @@ test_that("erroneous input: `max_n_coalitions`", { horizon = horizon, approach = "independence", prediction_zero = p0_ar, - n_batches = 1, max_n_coalitions = n_coalitions, group_lags = FALSE ) @@ -204,7 +197,6 @@ test_that("erroneous input: `max_n_coalitions`", { horizon = horizon, approach = "independence", prediction_zero = p0_ar, - n_batches = 1, max_n_coalitions = n_coalitions, group_lags = TRUE ) @@ -231,8 +223,7 @@ test_that("erroneous input: `train_idx`", { explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, - n_batches = 1 + prediction_zero = p0_ar ) }, error = TRUE @@ -255,8 +246,7 @@ test_that("erroneous input: `train_idx`", { explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, - n_batches = 1 + prediction_zero = p0_ar ) }, error = TRUE @@ -278,8 +268,7 @@ test_that("erroneous input: `train_idx`", { explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, - n_batches = 1 + prediction_zero = p0_ar ) }, error = TRUE @@ -305,8 +294,7 @@ test_that("erroneous input: `explain_idx`", { explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, - n_batches = 1 + prediction_zero = p0_ar ) }, error = TRUE @@ -328,8 +316,7 @@ test_that("erroneous input: `explain_idx`", { explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, - n_batches = 1 + prediction_zero = p0_ar ) }, error = TRUE @@ -355,8 +342,7 @@ test_that("erroneous input: `explain_y_lags`", { explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, - n_batches = 1 + prediction_zero = p0_ar ) }, error = TRUE @@ -378,8 +364,7 @@ test_that("erroneous input: `explain_y_lags`", { explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, - n_batches = 1 + prediction_zero = p0_ar ) }, error = TRUE @@ -401,8 +386,7 @@ test_that("erroneous input: `explain_y_lags`", { explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, - n_batches = 1 + prediction_zero = p0_ar ) }, error = TRUE @@ -423,8 +407,7 @@ test_that("erroneous input: `explain_y_lags`", { explain_y_lags = 0, horizon = 3, approach = "independence", - prediction_zero = p0_ar, - n_batches = 1 + prediction_zero = p0_ar ) }, error = TRUE @@ -451,8 +434,7 @@ test_that("erroneous input: `explain_x_lags`", { explain_xreg_lags = explain_xreg_lags_negative, horizon = 3, approach = "independence", - prediction_zero = p0_ar, - n_batches = 1 + prediction_zero = p0_ar ) }, error = TRUE @@ -474,8 +456,7 @@ test_that("erroneous input: `explain_x_lags`", { explain_xreg_lags = explain_xreg_lags_not_integer, horizon = 3, approach = "independence", - prediction_zero = p0_ar, - n_batches = 1 + prediction_zero = p0_ar ) }, error = TRUE @@ -497,8 +478,7 @@ test_that("erroneous input: `explain_x_lags`", { explain_xreg_lags = explain_x_lags_wrong_length, horizon = 3, approach = "independence", - prediction_zero = p0_ar, - n_batches = 1 + prediction_zero = p0_ar ) }, error = TRUE @@ -524,8 +504,7 @@ test_that("erroneous input: `horizon`", { explain_xreg_lags = 2, horizon = horizon_negative, approach = "independence", - prediction_zero = p0_ar, - n_batches = 1 + prediction_zero = p0_ar ) }, error = TRUE @@ -547,8 +526,7 @@ test_that("erroneous input: `horizon`", { explain_xreg_lags = 2, horizon = horizon_not_integer, approach = "independence", - prediction_zero = p0_ar, - n_batches = 1 + prediction_zero = p0_ar ) }, error = TRUE From a608dd6f8ac1fffb61afaa77c090c0fe08ac8d6b Mon Sep 17 00:00:00 2001 From: Martin Date: Wed, 16 Oct 2024 11:43:55 +0200 Subject: [PATCH 5/8] not adding explain_id for forecast (explain_idx is already there) --- R/compute_estimates.R | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/R/compute_estimates.R b/R/compute_estimates.R index edc31583..25210ff7 100644 --- a/R/compute_estimates.R +++ b/R/compute_estimates.R @@ -8,7 +8,7 @@ #' @keywords internal compute_estimates <- function(internal, vS_list) { verbose <- internal$parameters$verbose - cli_id <- internal$parameter$cli_id + type <- internal$parameters$type internal$timing_list$compute_vS <- Sys.time() @@ -50,10 +50,12 @@ compute_estimates <- function(internal, vS_list) { # Adding explain_id to the output dt - dt_shapley_est[, explain_id := .I] - setcolorder(dt_shapley_est, "explain_id") - dt_shapley_sd[, explain_id := .I] - setcolorder(dt_shapley_sd, "explain_id") + if(type != "forecast"){ + dt_shapley_est[, explain_id := .I] + setcolorder(dt_shapley_est, "explain_id") + dt_shapley_sd[, explain_id := .I] + setcolorder(dt_shapley_sd, "explain_id") + } internal$iter_list[[iter]]$dt_shapley_est <- dt_shapley_est From 79b61322c3e81380e020afcebbd95b51f328f008 Mon Sep 17 00:00:00 2001 From: Martin Date: Wed, 16 Oct 2024 11:50:53 +0200 Subject: [PATCH 6/8] some forecast tests OK --- tests/testthat/_snaps/forecast-output.md | 27 ++++++++++++ .../forecast_output_ar_numeric.rds | Bin 2472 -> 3004 bytes .../forecast_output_arima_numeric.rds | Bin 18699 -> 21557 bytes .../forecast_output_arima_numeric_no_xreg.rds | Bin 2262 -> 2765 bytes tests/testthat/_snaps/forecast-setup.md | 41 +++++++++--------- 5 files changed, 47 insertions(+), 21 deletions(-) diff --git a/tests/testthat/_snaps/forecast-output.md b/tests/testthat/_snaps/forecast-output.md index 1ddbb5f9..6121e660 100644 --- a/tests/testthat/_snaps/forecast-output.md +++ b/tests/testthat/_snaps/forecast-output.md @@ -10,6 +10,15 @@ max_n_coalitions is NULL or larger than or 2^n_features = 4, and is therefore set to 2^n_features = 4. + * Model class: + * Approach: empirical + * Adaptive estimation: FALSE + * Number of feature-wise Shapley values: 2 + * Number of observations to explain: 2 + + -- Main computation started -- + + i Using 4 of 4 coalitions. Output explain_idx horizon none Temp.1 Temp.2 @@ -32,6 +41,15 @@ max_n_coalitions is NULL or larger than or 2^n_features = 128, and is therefore set to 2^n_features = 128. + * Model class: + * Approach: empirical + * Adaptive estimation: FALSE + * Number of feature-wise Shapley values: 7 + * Number of observations to explain: 2 + + -- Main computation started -- + + i Using 128 of 128 coalitions. Output explain_idx horizon none Temp.1 Temp.2 Wind.1 Wind.2 Wind.F1 Wind.F2 @@ -62,6 +80,15 @@ max_n_coalitions is NULL or larger than or 2^n_features = 4, and is therefore set to 2^n_features = 4. + * Model class: + * Approach: empirical + * Adaptive estimation: FALSE + * Number of feature-wise Shapley values: 2 + * Number of observations to explain: 2 + + -- Main computation started -- + + i Using 4 of 4 coalitions. Output explain_idx horizon none Temp.1 Temp.2 diff --git a/tests/testthat/_snaps/forecast-output/forecast_output_ar_numeric.rds b/tests/testthat/_snaps/forecast-output/forecast_output_ar_numeric.rds index 007cfa0d7af51994a6ac3cb26bbe6b725a83ced0..6564870f156a587a665cf968aa188193daf19280 100644 GIT binary patch literal 3004 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 literal 2472 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 YzY(X2eW&i*H diff --git a/tests/testthat/_snaps/forecast-output/forecast_output_arima_numeric_no_xreg.rds b/tests/testthat/_snaps/forecast-output/forecast_output_arima_numeric_no_xreg.rds index 1ed626583dcb97de9e9192bc0cb425d6055f274b..d9fa3bd7285ca7a18e77204f1a926d01cf6fcd92 100644 GIT binary patch literal 2765 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 TqqChk6@B|3N*anLsX+h$H)>XQ literal 2262 zcmV;{2r2g;iwFP!000001MM11j2uU`dZu?i`^zqC2NEIymO#pZ6}vVlPGs+x*fEYj zc)i~B=3~mWGc~h~d%D}*J?mNf5KD021|kY5NJtilb0j1VAi+jL0)$W`&WOO31Bnly z5I{Rrb-&kLUEAYbn~lAeW~4XO^*&XvUcdM1)3rQI2q_Y?SRlnA@koXiFTU{kX9R94 zBE+Snj0q?SctgPVa!RBd00n>|z__H>7P{T53n7uEcjdL8Y*$CQjsN_3^4;hDc5~wo z-}=VY#oo`htE1f8PkrXkZygvv{PyI(o_z98w|}u+oe;AS>2H#%9Jj;TJP;2Pkr86# z2=96}vm9zQx_~OLy1sS8b)afGuEXKEbdk5c>6uJzR_mtfyVs|&D{05VE%Ddu_5Q8v zQ@2@w`V;^;++ZP_4%v#$Gnl3?TGSetoVJ{h`wp|G18z5c-W15k0X6}4eXz3C0{Br> zJ`KGj1`v#vZ`GMCwFd_x@DhvC8RSndfo{|$2>vz`+_!5)X~USiL;BU#{`9_$S|#CA z6|OX0pVwIs=J4gUXCNOTx$VV9%*aNDs@!#qDNY~LW`^&jJl&*U7(LLV0($JT94oY# zO&wZynJu1OCjiQbCGSv_=py2k538+GW4>xML7Z4VnCuDflo6LK0fVAQJBRg22d8YTTxSfA9D ziJ)S`Y7>Z35@)=E#!?Y17|m0_hjCTdL0rY$?|~$?IxdGP>_J5Y2mG2wHCI@`0XGK2 z7*m{}SOX8Jt=x{vtg{qQ&)8uSl3vd^4UWZFMsllIQimE%JK@jk z%g~;;MCIIj&FDw6Q8^NOd|4rOhZ@)u;?tS!BBbM)7XH)vid3prpGK_ z+GCY@Q3TqS(*oLKo}gH9)ZXB}yG=qEYWZ%*ON09C^KpY58LA@CSy*395N5!616#ey zd8`3#%Ji^+LYBx#>)~oLH;uTRP^1R&25(??F~fC_>k$WuBvOjntc9IEadzRv8tpii z=%y`3(O#j~xz$5No3J}X~@?`9R-2stIh_=21xNlsgD#`wga4YH$2CNsh0^rz0-MbuB?UMGVX8N|r$#R&S; zAomXZ>O9#MzslVd-6anel6-oLM8`bs7+=)e*ulw;DP{5waCWfh&*WKI!u*lcVNUtK z$G7=##+T8%l)qWc*^ZRNg4k)`4yN4AtcI)IWVM{mfmJArJJYS8@{}F1_!o;sy?Rep z&urm0b4Gu!)+!=LW{**hjvteC`4}9}*nCa$#67D%rSH9QZm$B)O!1NJOprH$PWrc# z_^4VpLB`PW(hpT2@#fro?T&mb|EOO{;At<8NhggQTOM@IV9uOG2ThzHaFg?(WcL@C1IfG;ayqHs(3f!k$ZaUNsjP^m5<~Wh|esW{*A0I&s?vASI z7bnYU@GhKL5dFIqrRkZq`d+0IR-rBhS4>aHE%%*k#6N|)45O3QIAU33}g7s|wuP15%^O%l|D)0{{CH0QD2 zBX>M9sUI{vqyv%ML*~)ED=+FT2KCMwM6G`7Ehiad&UvHQE2H0_vNcc{?;~n=1kL0Q z<$U+I|1AD~q;~$ZUt-@qexNpg@|~rz*59}AT?h{S@U2p_HqSmdvT@+U+JzT?`o{jL zt9!q_%!?`C#h)u4U1i}6ozd#Enfk0opVjCGHTpq8e{fUbLmc0}UZ2yUaZ0t2#O%76 zLhe_Jp+=Zq>Kbo^nX6t~#qh53u*amSLhdJ*#-ssp4s}<)&g;o7tE#+?nwb#eTU8{@ z93^x*bgJ#@eX_w5%GE47bLcS6%ZWv^3}5`hHVjG&v)i?h&!Dt$aJv=`=2#pL8OL+4 kcUAC?IXb1h8<>7J%XR)C*%IbF6IUkx1EN@osGcwY01Whaa{vGU diff --git a/tests/testthat/_snaps/forecast-setup.md b/tests/testthat/_snaps/forecast-setup.md index b0dfb148..78f75492 100644 --- a/tests/testthat/_snaps/forecast-setup.md +++ b/tests/testthat/_snaps/forecast-setup.md @@ -6,7 +6,7 @@ explain_forecast(testing = TRUE, model = model_custom_arima_temp, y = data[1: 150, "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, explain_y_lags = 2, explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, n_batches = 1) + prediction_zero = p0_ar) Message Note: You passed a model to explain() which is not natively supported, and did not supply a 'get_model_specs' function to explain(). Consistency checks between model and data is therefore disabled. @@ -27,7 +27,7 @@ explain_forecast(testing = TRUE, model = model_arima_temp, y = y_wrong_format, xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, explain_y_lags = 2, explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, n_batches = 1) + prediction_zero = p0_ar) Condition Error in `get_data_forecast()`: ! `y` has 2 columns (Temp,Wind). @@ -41,7 +41,7 @@ explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, "Temp"], xreg = xreg_wrong_format, train_idx = 2:148, explain_idx = 149:150, explain_y_lags = 2, explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, n_batches = 1) + prediction_zero = p0_ar) Condition Error in `get_data_forecast()`: ! `xreg` has 2 columns (Temp,Wind). @@ -56,7 +56,7 @@ explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, "Temp"], xreg = xreg_no_column_names, train_idx = 2:148, explain_idx = 149:150, explain_y_lags = 2, explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, n_batches = 1) + prediction_zero = p0_ar) Condition Error in `get_data_forecast()`: ! `xreg` misses column names. @@ -66,8 +66,7 @@ Code explain_forecast(testing = TRUE, y = data[1:150, "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, explain_y_lags = 2, - explain_xreg_lags = 2, horizon = 3, approach = "independence", prediction_zero = p0_ar, - n_batches = 1) + explain_xreg_lags = 2, horizon = 3, approach = "independence", prediction_zero = p0_ar) Condition Error in `explain_forecast()`: ! argument "model" is missing, with no default @@ -79,7 +78,7 @@ explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, explain_y_lags = 2, explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_wrong_length, n_batches = 1) + prediction_zero = p0_wrong_length) Condition Error in `get_parameters()`: ! `prediction_zero` (77.8823529411765, 77.8823529411765) must be numeric and match the output size of the model (3). @@ -159,7 +158,7 @@ explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, "Temp"], xreg = data[, "Wind"], train_idx = train_idx_too_short, explain_idx = 149: 150, explain_y_lags = 2, explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, n_batches = 1) + prediction_zero = p0_ar) Condition Error in `get_parameters()`: ! `train_idx` must be a vector of positive finite integers and length > 1. @@ -171,7 +170,7 @@ explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, "Temp"], xreg = data[, "Wind"], train_idx = train_idx_not_integer, explain_idx = 149: 150, explain_y_lags = 2, explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, n_batches = 1) + prediction_zero = p0_ar) Condition Error in `get_parameters()`: ! `train_idx` must be a vector of positive finite integers and length > 1. @@ -183,7 +182,7 @@ explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, "Temp"], xreg = data[, "Wind"], train_idx = train_idx_out_of_range, explain_idx = 149:150, explain_y_lags = 2, explain_xreg_lags = 2, horizon = 3, - approach = "independence", prediction_zero = p0_ar, n_batches = 1) + approach = "independence", prediction_zero = p0_ar) Condition Error in `get_data_forecast()`: ! The train (`train_idx`) and explain (`explain_idx`) indices must fit in the lagged data. @@ -196,7 +195,7 @@ explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = explain_idx_not_integer, explain_y_lags = 2, explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, n_batches = 1) + prediction_zero = p0_ar) Condition Error in `get_parameters()`: ! `explain_idx` must be a vector of positive finite integers. @@ -208,7 +207,7 @@ explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = explain_idx_out_of_range, explain_y_lags = 2, explain_xreg_lags = 2, horizon = 3, approach = "independence", - prediction_zero = p0_ar, n_batches = 1) + prediction_zero = p0_ar) Condition Error in `get_data_forecast()`: ! The train (`train_idx`) and explain (`explain_idx`) indices must fit in the lagged data. @@ -221,7 +220,7 @@ explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, explain_y_lags = explain_y_lags_negative, explain_xreg_lags = 2, horizon = 3, - approach = "independence", prediction_zero = p0_ar, n_batches = 1) + approach = "independence", prediction_zero = p0_ar) Condition Error in `get_parameters()`: ! `explain_y_lags` must be a vector of positive finite integers. @@ -233,7 +232,7 @@ explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, explain_y_lags = explain_y_lags_not_integer, explain_xreg_lags = 2, horizon = 3, - approach = "independence", prediction_zero = p0_ar, n_batches = 1) + approach = "independence", prediction_zero = p0_ar) Condition Error in `get_parameters()`: ! `explain_y_lags` must be a vector of positive finite integers. @@ -245,7 +244,7 @@ explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, explain_y_lags = explain_y_lags_more_than_one, explain_xreg_lags = 2, horizon = 3, - approach = "independence", prediction_zero = p0_ar, n_batches = 1) + approach = "independence", prediction_zero = p0_ar) Condition Error in `get_data_forecast()`: ! `y` has 1 columns (Temp). @@ -258,7 +257,7 @@ explain_y_lags_zero <- 0 explain_forecast(testing = TRUE, model = model_arima_temp_noxreg, y = data[1: 150, "Temp"], train_idx = 2:148, explain_idx = 149:150, explain_y_lags = 0, - horizon = 3, approach = "independence", prediction_zero = p0_ar, n_batches = 1) + horizon = 3, approach = "independence", prediction_zero = p0_ar) Condition Error in `get_data_forecast()`: ! `explain_y_lags=0` is not allowed for models without exogeneous variables @@ -270,7 +269,7 @@ explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, explain_y_lags = 2, explain_xreg_lags = explain_xreg_lags_negative, horizon = 3, - approach = "independence", prediction_zero = p0_ar, n_batches = 1) + approach = "independence", prediction_zero = p0_ar) Condition Error in `get_parameters()`: ! `explain_xreg_lags` must be a vector of positive finite integers. @@ -282,7 +281,7 @@ explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, explain_y_lags = 2, explain_xreg_lags = explain_xreg_lags_not_integer, horizon = 3, - approach = "independence", prediction_zero = p0_ar, n_batches = 1) + approach = "independence", prediction_zero = p0_ar) Condition Error in `get_parameters()`: ! `explain_xreg_lags` must be a vector of positive finite integers. @@ -294,7 +293,7 @@ explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, explain_y_lags = 2, explain_xreg_lags = explain_x_lags_wrong_length, horizon = 3, - approach = "independence", prediction_zero = p0_ar, n_batches = 1) + approach = "independence", prediction_zero = p0_ar) Condition Error in `get_data_forecast()`: ! `xreg` has 1 columns (Wind). @@ -308,7 +307,7 @@ explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, explain_y_lags = 2, explain_xreg_lags = 2, horizon = horizon_negative, - approach = "independence", prediction_zero = p0_ar, n_batches = 1) + approach = "independence", prediction_zero = p0_ar) Condition Error in `get_parameters()`: ! `horizon` must be a vector (or scalar) of positive integers. @@ -320,7 +319,7 @@ explain_forecast(testing = TRUE, model = model_arima_temp, y = data[1:150, "Temp"], xreg = data[, "Wind"], train_idx = 2:148, explain_idx = 149:150, explain_y_lags = 2, explain_xreg_lags = 2, horizon = horizon_not_integer, - approach = "independence", prediction_zero = p0_ar, n_batches = 1) + approach = "independence", prediction_zero = p0_ar) Condition Error in `get_parameters()`: ! `horizon` must be a vector (or scalar) of positive integers. From 79853ee92d97a8869d3f059b1af5c16e2481b4fb Mon Sep 17 00:00:00 2001 From: Martin Date: Wed, 16 Oct 2024 12:55:53 +0200 Subject: [PATCH 7/8] style, lint and simplify full_ids code --- R/compute_estimates.R | 6 +++--- R/explain_forecast.R | 2 +- R/get_predict_model.R | 3 ++- R/setup.R | 4 ++-- R/shapley_setup.R | 13 +++++++------ tests/testthat/test-asymmetric-causal-output.R | 4 ++-- tests/testthat/test-forecast-setup.R | 6 +++--- 7 files changed, 20 insertions(+), 18 deletions(-) diff --git a/R/compute_estimates.R b/R/compute_estimates.R index 25210ff7..648af99c 100644 --- a/R/compute_estimates.R +++ b/R/compute_estimates.R @@ -50,7 +50,7 @@ compute_estimates <- function(internal, vS_list) { # Adding explain_id to the output dt - if(type != "forecast"){ + if (type != "forecast") { dt_shapley_est[, explain_id := .I] setcolorder(dt_shapley_est, "explain_id") dt_shapley_sd[, explain_id := .I] @@ -328,13 +328,13 @@ bootstrap_shapley_new <- function(internal, dt_vS, n_boot_samps = 100, seed = 12 X_boot <- unique(X_boot, by = c("id_coalition", "boot_id")) X_boot[, shapley_weight := sample_freq] if (type == "forecast") { - # Filter out everything which represents empty (i.e. no changed features) and everything which is all (i.e. all features are changed, will be multiple to filter out for horizon > 1). + # Filter out everything which represents empty (i.e. no changed features) and everything which is all + # (i.e. all features are changed, will be multiple to filter out for horizon > 1). full_ids <- internal$objects$id_coalition_mapper_dt$id_coalition[internal$objects$id_coalition_mapper_dt$full] X_boot[coalition_size == 0 | id_coalition %in% full_ids, shapley_weight := X_org[1, shapley_weight]] } else { X_boot[coalition_size %in% c(0, n_shapley_values), shapley_weight := X_org[1, shapley_weight]] } - } else { X_boot0 <- X_samp[ sample.int( diff --git a/R/explain_forecast.R b/R/explain_forecast.R index 92d62995..55ab1d45 100644 --- a/R/explain_forecast.R +++ b/R/explain_forecast.R @@ -402,7 +402,7 @@ lag_data <- function(x, lags) { reg_forecast_setup <- function(x, horizon, group) { fcast <- matrix(NA, nrow(x) - horizon + 1, 0) names <- character() - horizon_group <- lapply(seq_len(horizon), function (i) names(group)[!(names(group) %in% colnames(x))]) + horizon_group <- lapply(seq_len(horizon), function(i) names(group)[!(names(group) %in% colnames(x))]) for (i in seq_len(ncol(x))) { names_i <- paste0(colnames(x)[i], ".F", seq_len(horizon)) names <- c(names, names_i) diff --git a/R/get_predict_model.R b/R/get_predict_model.R index 0b37e5d3..293c3ac0 100644 --- a/R/get_predict_model.R +++ b/R/get_predict_model.R @@ -44,7 +44,8 @@ test_predict_model <- function(x_test, predict_model, model, internal) { tmp <- tryCatch(predict_model( x = model, newdata = x_test[, .SD, .SDcols = seq_len(internal$data$n_endo), drop = FALSE], - newreg = x_test[, .SD, .SDcols = seq_len(ncol(x_test) - internal$data$n_endo) + internal$data$n_endo, drop = FALSE], + newreg = x_test[, .SD, .SDcols = seq_len(ncol(x_test) - internal$data$n_endo) + internal$data$n_endo, + drop = FALSE], horizon = internal$parameters$horizon, explain_idx = rep(internal$parameters$explain_idx[1], 2), y = internal$data$y, diff --git a/R/setup.R b/R/setup.R index a24d82d7..80cfcad7 100644 --- a/R/setup.R +++ b/R/setup.R @@ -114,7 +114,6 @@ setup <- function(x_train, internal$parameters$group_lags <- group_lags # TODO: Consider handling this parameter update somewhere else (like in get_extra_parameters?) - } else { internal$data <- get_data(x_train, x_explain) } @@ -487,7 +486,8 @@ get_extra_parameters <- function(internal, type) { if (internal$parameters$group_lags) { internal$parameters$group <- internal$data$group } - internal$parameters$horizon_features <- lapply(internal$data$horizon_group, function (x) as.character(unlist(internal$data$group[x]))) + internal$parameters$horizon_features <- lapply(internal$data$horizon_group, + function(x) as.character(unlist(internal$data$group[x]))) } # get number of features and observations to explain diff --git a/R/shapley_setup.R b/R/shapley_setup.R index 088bfb0b..c96b14b5 100644 --- a/R/shapley_setup.R +++ b/R/shapley_setup.R @@ -531,6 +531,10 @@ create_S_batch <- function(internal, seed = NULL) { coalition_map <- internal$iter_list[[iter]]$coalition_map + if (type == "forecast") { + id_coalition_mapper_dt <- internal$objects$id_coalition_mapper_dt + full_ids <- id_coalition_mapper_dt$id_coalition[id_coalition_mapper_dt$full] + } X0 <- copy(internal$iter_list[[iter]]$X) @@ -551,7 +555,6 @@ create_S_batch <- function(internal, seed = NULL) { if (length(approach0) > 1) { if (type == "forecast") { - full_ids <- internal$objects$id_coalition_mapper_dt$id_coalition[internal$objects$id_coalition_mapper_dt$full] X0[!(coalition_size == 0 | id_coalition %in% full_ids), approach := approach0[coalition_size]] } else { X0[!(coalition_size %in% c(0, n_shapley_values)), approach := approach0[coalition_size]] @@ -604,7 +607,6 @@ create_S_batch <- function(internal, seed = NULL) { } } else { if (type == "forecast") { - full_ids <- internal$objects$id_coalition_mapper_dt$id_coalition[internal$objects$id_coalition_mapper_dt$full] X0[!(coalition_size == 0 | id_coalition %in% full_ids), approach := approach0] } else { X0[!(coalition_size %in% c(0, n_shapley_values)), approach := approach0] @@ -615,7 +617,6 @@ create_S_batch <- function(internal, seed = NULL) { data.table::setorder(X0, randomorder) data.table::setorder(X0, shapley_weight) if (type == "forecast") { - full_ids <- internal$objects$id_coalition_mapper_dt$id_coalition[internal$objects$id_coalition_mapper_dt$full] X0[!(coalition_size == 0 | id_coalition %in% full_ids), batch := ceiling(.I / .N * n_batches)] } else { X0[!(coalition_size %in% c(0, n_shapley_values)), batch := ceiling(.I / .N * n_batches)] @@ -625,7 +626,6 @@ create_S_batch <- function(internal, seed = NULL) { # Assigning batch 1 (which always is the smallest) to the full prediction. X0[, randomorder := NULL] if (type == "forecast") { - full_ids <- internal$objects$id_coalition_mapper_dt$id_coalition[internal$objects$id_coalition_mapper_dt$full] X0[id_coalition %in% full_ids, batch := 1] } else { X0[id_coalition == max(id_coalition), batch := 1] @@ -686,10 +686,11 @@ shapley_setup_forecast <- function(internal) { # Apply create_coalition_table, weigth_matrix and coalition_matrix_cpp to each of the different horizons for (i in seq_along(horizon_features)) { if (is_groupwise && !is.null(horizon_group)) { - this_coal_feature_list <- coal_feature_list[sapply(names(coal_feature_list), function (x) x %in% horizon_group[[i]])] + this_coal_feature_list <- coal_feature_list[sapply(names(coal_feature_list), + function(x) x %in% horizon_group[[i]])] } else { this_coal_feature_list <- lapply(coal_feature_list, function(x) x[x %in% horizon_features[[i]]]) - this_coal_feature_list <- this_coal_feature_list[sapply(this_coal_feature_list, function (x) length(x) != 0)] + this_coal_feature_list <- this_coal_feature_list[sapply(this_coal_feature_list, function(x) length(x) != 0)] } n_this_featcomb <- length(this_coal_feature_list) diff --git a/tests/testthat/test-asymmetric-causal-output.R b/tests/testthat/test-asymmetric-causal-output.R index 0ae98f76..8c714823 100644 --- a/tests/testthat/test-asymmetric-causal-output.R +++ b/tests/testthat/test-asymmetric-causal-output.R @@ -453,7 +453,7 @@ test_that("output_categorical_asym_causal_mixed_cat", { explain( testing = TRUE, model = model_lm_categorical, - x_explain = x_explain_categorical[1:2], #Temp [1:2] as [1:3] give different sample on GHA-macOS for unknown reason + x_explain = x_explain_categorical[1:2], # Temp [1:2] as [1:3] give different sample on GHA-macOS (unknown reason) x_train = x_train_categorical, approach = "categorical", prediction_zero = p0, @@ -483,7 +483,7 @@ test_that("output_cat_asym_causal_mixed_cat_ad", { confounding = c(TRUE, FALSE, FALSE), n_MC_samples = 5, # Just for speed adaptive = TRUE - ), + ), "output_cat_asym_causal_mixed_cat_ad" ) }) diff --git a/tests/testthat/test-forecast-setup.R b/tests/testthat/test-forecast-setup.R index 52ff4d6d..7187115c 100644 --- a/tests/testthat/test-forecast-setup.R +++ b/tests/testthat/test-forecast-setup.R @@ -47,7 +47,7 @@ test_that("erroneous input: `x_train/x_explain`", { horizon = 3, approach = "independence", prediction_zero = p0_ar - ) + ) }, error = TRUE ) @@ -69,7 +69,7 @@ test_that("erroneous input: `x_train/x_explain`", { horizon = 3, approach = "independence", prediction_zero = p0_ar - ) + ) }, error = TRUE ) @@ -92,7 +92,7 @@ test_that("erroneous input: `x_train/x_explain`", { horizon = 3, approach = "independence", prediction_zero = p0_ar - ) + ) }, error = TRUE ) From d46d5015b74baa1dbc42d07bef1ecd1237919cd3 Mon Sep 17 00:00:00 2001 From: Martin Date: Wed, 16 Oct 2024 14:11:42 +0200 Subject: [PATCH 8/8] fixes during meeting. --- R/setup.R | 4 +- R/shapley_setup.R | 2 +- tests/testthat/_snaps/forecast-output.md | 3571 +---------------- .../forecast_output_arima_numeric_no_lags.rds | Bin 2910 -> 3553 bytes ...st_output_forecast_ARIMA_group_numeric.rds | Bin 3607 -> 4576 bytes 5 files changed, 30 insertions(+), 3547 deletions(-) diff --git a/R/setup.R b/R/setup.R index 80cfcad7..dc0e7029 100644 --- a/R/setup.R +++ b/R/setup.R @@ -528,12 +528,14 @@ get_extra_parameters <- function(internal, type) { } else { internal$parameters$shap_names <- internal$parameters$group_names } + } else { + # For normal explain + internal$parameters$shap_names <- internal$parameters$group_names } internal$parameters$n_groups <- length(group) internal$parameters$group_names <- names(group) internal$parameters$group <- group - internal$parameters$shap_names <- internal$parameters$group_names internal$parameters$n_shapley_values <- internal$parameters$n_groups } else { internal$objects$coal_feature_list <- as.list(seq_len(internal$parameters$n_features)) diff --git a/R/shapley_setup.R b/R/shapley_setup.R index c96b14b5..448326d3 100644 --- a/R/shapley_setup.R +++ b/R/shapley_setup.R @@ -705,7 +705,7 @@ shapley_setup_forecast <- function(internal) { prev_coal_samples = prev_coal_samples, coal_feature_list = this_coal_feature_list, approach0 = approach, - shapley_reweighting = FALSE + shapley_reweighting = shapley_reweighting ) W_list[[i]] <- weight_matrix( diff --git a/tests/testthat/_snaps/forecast-output.md b/tests/testthat/_snaps/forecast-output.md index 6121e660..7e08299d 100644 --- a/tests/testthat/_snaps/forecast-output.md +++ b/tests/testthat/_snaps/forecast-output.md @@ -108,9 +108,18 @@ Consistency checks between model and data is therefore disabled. Success with message: - max_n_coalitions is NULL or larger than or 2^n_groups = 4, - and is therefore set to 2^n_groups = 4. + max_n_coalitions is NULL or larger than or 2^n_groups = 16, + and is therefore set to 2^n_groups = 16. + * Model class: + * Approach: empirical + * Adaptive estimation: FALSE + * Number of group-wise Shapley values: 4 + * Number of observations to explain: 2 + + -- Main computation started -- + + i Using 16 of 16 coalitions. Output explain_idx horizon none Temp Wind @@ -133,3550 +142,22 @@ max_n_coalitions is NULL or larger than or 2^n_features = 8, and is therefore set to 2^n_features = 8. - Condition - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] - Warning in `matrix()`: - data length [2] is not a sub-multiple or multiple of the number of rows [3] + * Model class: + * Approach: independence + * Adaptive estimation: FALSE + * Number of feature-wise Shapley values: 3 + * Number of observations to explain: 2 + + -- Main computation started -- + + i Using 8 of 8 coalitions. Output explain_idx horizon none Wind.F1 Wind.F2 Wind.F3 - 1: 149 1 77.88 -9.391 NA NA - 2: 150 1 77.88 -4.142 NA NA - 3: 149 2 77.88 -4.699 -4.6989 NA - 4: 150 2 77.88 -2.074 -2.0745 NA - 5: 149 3 77.88 -3.130 -4.6234 -3.130 - 6: 150 3 77.88 -1.381 -0.7147 -1.381 + 1: 149 1 77.88 -10.507 NA NA + 2: 150 1 77.88 -5.635 NA NA + 3: 149 2 77.88 -4.696 -6.189 NA + 4: 150 2 77.88 -2.071 -1.405 NA + 5: 149 3 77.88 -3.133 -3.133 -2.46 + 6: 150 3 77.88 -1.383 -1.383 -1.91 diff --git a/tests/testthat/_snaps/forecast-output/forecast_output_arima_numeric_no_lags.rds b/tests/testthat/_snaps/forecast-output/forecast_output_arima_numeric_no_lags.rds index c11609c32386a1de4a7e89bbc4e5553672b3d450..8847ed002724ed390010b999c5676d2fd1192516 100644 GIT binary patch literal 3553 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 literal 2910 zcmV-k3!(HMiwFP!000001MM7bY!t_JZ|}}`wy|^AE(H-9^OcW6Trfl>RQQgBkMbFe zaqI+~WqmhiFS*-2cGu=WK#&?Ks?;iNXg-Kqsjc|c{z{S3N|kc1)J9R;R8+J-`lrdS z{A*)XEhJ53cV_p!-PyT4+n5lXax0DB&3kX&y!YnK+u5C24>n1X6qRC8S&GK#PbuDi zWY@!6D6ZWhxUhki7Jx6)@=6FqdIX9LB?_gL(KCHz=i;IMqu(rH(EiHAy9^dz$bX$d z>+-+XV7rM`?;Kn9a?j{Q>ibulKYHcDMB5*({9^0br4!O?&u!cCQemR8dF}BYvrxJI z<;o||PW~F(JvYg0O8gX|)9%W5j={J5m(RNT?IeX{|PFVH{J)6@SI70eb?3l)?B*_2alwaZqA3nYNa zn^dA8U~!kG+r-q>LYGAfd6VQRatV|vD7W8w){V>}G!AeTbc=c}qMW2e=pQ{xm_-ns z5{z^-EF#$j^hl;t!fVRIy_k_W8Ikm)RIASSC-xo5Bt1S}=Vab6NmjM&5WX;Z5#*Dk zP zS&S8388!@CvD9J-g*Ro5Vrk4Kij@Pad9U*xWz%huR69S`$cuql70qcy31+V3rc+s9 zNm3S^;qAbOb4{MZTyweq2`y1-D>IY&L!q)8Hj+)@Q)oB z3>F#n6oXW#2Z9D|iJV3y$|f0sPEm;{_nTMlA_$4zY&zkm*SrLTX%-QFa}g9Uc@++^ zS}K`_njOWMEvXs}Tg4hxOHObWG<^hU_mn6_a|8MeF^yT~N_@mL#!7y?A9&mqNRXkC z&H>fVj(UigMMw^%K1+zJfs$u4rwe4-)+m;C1}9$3K3yVWFv1*j zlu`=n2zI*cK;O=BWlYy-H$`eiaacJ;w2@I884`4Y4;vN=Y-g@1kkg7uTt44HNj0aI zY;7D_+pw;v=Ezu)=)O#wSX{#<8g3@BEX~ui1*|Hl!=!+%Lgv~cL~#~1(R@Qxd(7lL z4Sd+YuGpquZ2^A8o$Yu#vlPc$r!>#_CMPanAkDFK_Bbuyq-8HHJ+#mzqx2Xp+iCd*E!$|>3G|&n+d<1#S~5_76mUJz zW)HO62DGgJSzo=hJVDETS`LC-hCf0}KhO@-GC<4I0EcKf2KYn3a{%<-4*l&1+eNYCWA6A}%{`LUhQIOFK_#>cOKiGiyCjp1Q2Lbj0Pj3kC0QC1X zlw&}9GQ?)ycLzB?>;qaa*RM*;GqfBBcobw0K^Xu$4uPzFoW1DJ-B1p~I5GSV&?^Hp z#?N9SP0KE~9ZQG_mJsnC2)9m#PcpoC&-3n4M@X^c;$?PUxs+LPiCwSbLMHRjCg;jL z0QL1ifB28=dN;EY=<5K#d6^3lzZ~$Z^Ujr71#m62|0>i`{(}I!1w6J#xIvJM?KTMd zbqaD3zXTxKi~4%Fb4l(LS^v^+o%zJ?bIyp+1|hxbjyCcCP{cWp4lJPe6}0 z-~+rTzf))@_Jj14FdpK#vuBSN%K z9Iq9EURX!_Q-VLmeo-$Gih7IoVn66#q<>AAXE^^*UbA37jswzVVVn@6edy-~fN19m zp?^`YwL(8QuE>x5AfGsn=FD;hAtg50tX^M0-JU_Na?4J}T}2&0$+Q z#@dAKKHv2I&6My2D_2_%c;Ru~!=r}-kMEzYr=}K&rvjGYM!&FO7qaivpesbr;Z{|m z9N6|~EPLA`{)>x7fYEs>D+e0sV?|(BjA!84{INjoU<3sR&@gCc($MgCcqr}@Lp~4G&zJW zbM>g83+g9v{qZ~Q0lo|L&rC&f=W}wllR&dU$=&arOMiFDZz;(?qY*qWvygDYc;FF( zn}sz}>PNRBr8atYPfaGzN` zO%QkX_k~2V@KyERJ2zN{X_K5Jp7Y`r_qPF;;;3^+QUX_Xe9Vo1wtB7hb8Q!l*TCz4 zmLuS{;=R^qw1hNcUJiYWAK54c7d=c+EBxjYNtDCY!t?FL1dK|_96zsMO!AZ8eA>rD zjP&lW!Sf~^P*p;LU5KO5T=B2lx%|2%RlQ-2v(#CJ;~J89N>ow&(_s8~H-caBMvgZc zKA70etXXo8y0vmf@XIso$XnM0{ZwnYGtWg4^z2Oc7*3lCK)hy{PFOHyEJ}YkJ$?F} z-N!5MGyXr{S9y=ExrZt}-+TK;`^WcprX4)ecOOSQ)K#FXZ}I%ppJ^s%GE@hQZq%WZ z>2TujFT7p(Yk&XtZ%5ZTP?`Rl1C6N{d(K@ufANEanr8LEXND@j>+e5%W2nsFxx}$9 zhkpG}gMdHd@Z|@tI`q{~v@!Y*mLA&;{2Kt@?(pdY>w1dU&i!Nk)#fzN(?G9;(3$)S z$WNnuMsI#>MFsQ&zB0(`dh5H_&S!r1@#VB@-|95jmj?Sne1sW-i?%4gWa5`WxFcF? zDJ26wBDBS$wDR_@=Pxh@gb?{Ms{mrAK2nk&?sHh$gdUe&DEH#e?-_K#S?=8#F~(w2 z^&P1l;9QpN;!-`v#i5AjA6+mmV;GNaj`5)or!kCEAztUBXUb{!nJ?$RfHD8+T^aNL zH;??B?687!Ea}ZLdM{$vT%j-r>yP|*V~)5TFA^4<SEC&atp9q2vNU$~cwi^bPrcj;@y(2cxBVc(Crp9Fbh=zSXr z8Cm?gG9=LlJ_&U4D$AKpT%)oXP#M2_^-cwJ0EFSl+zYVNv)_^9eaqW>U*SJHul_u9 zsPcaEPfqmAS_fDq=df|~)UQ5FWe#8Z^#0%f<@)S(2i^$LN0uLYb<&4>TP_d0`BHT~ z2&?tcC!hb}oBcjKu;qb0_YPFogK**bClGjv8S+K4q>QTeMrET=?+(2SLdwHCZ>>#h^h7*o`(J>z=Ip?Cq1Dae=&q8=TxAo}`@)nt z5Z8ak@ClOjKFMrkpLGWobM7aYlAoCyyx@eO@+J=kzd)~%?Ur%haVi@(KZfpDz)9$yO+q*WCt=fU5@tFa&>H$JXcGT_0|q7gkk~(Z5gPn)CJA$T3|H0v1D=t_ I$wNc{0276_W&i*H diff --git a/tests/testthat/_snaps/forecast-output/forecast_output_forecast_ARIMA_group_numeric.rds b/tests/testthat/_snaps/forecast-output/forecast_output_forecast_ARIMA_group_numeric.rds index ad5d14dcebb63873744efc62d2ad631e54702fb3..08bf4a33bb3e019b6107629aa77347540d7ff0a7 100644 GIT binary patch literal 4576 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 Kg9mXDfdBw#v@Xs7 literal 3607 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