diff --git a/apple-touch-icon-120x120.png b/apple-touch-icon-120x120.png index d5479a12..6b505631 100644 Binary files a/apple-touch-icon-120x120.png and b/apple-touch-icon-120x120.png differ diff --git a/apple-touch-icon-152x152.png b/apple-touch-icon-152x152.png index defb3be4..b3754083 100644 Binary files a/apple-touch-icon-152x152.png and b/apple-touch-icon-152x152.png differ diff --git a/apple-touch-icon-180x180.png b/apple-touch-icon-180x180.png index 614fc711..39569ff6 100644 Binary files a/apple-touch-icon-180x180.png and b/apple-touch-icon-180x180.png differ diff --git a/apple-touch-icon-60x60.png b/apple-touch-icon-60x60.png index d61fe8d8..e9a9c961 100644 Binary files a/apple-touch-icon-60x60.png and b/apple-touch-icon-60x60.png differ diff --git a/apple-touch-icon-76x76.png b/apple-touch-icon-76x76.png index 7fc0576a..1c8efe91 100644 Binary files a/apple-touch-icon-76x76.png and b/apple-touch-icon-76x76.png differ diff --git a/apple-touch-icon.png b/apple-touch-icon.png index 00a5b13f..4f1a1be2 100644 Binary files a/apple-touch-icon.png and b/apple-touch-icon.png differ diff --git a/articles/back-testing-and-hyperparameter-tuning.html b/articles/back-testing-and-hyperparameter-tuning.html index bf325afa..690b4e5b 100644 --- a/articles/back-testing-and-hyperparameter-tuning.html +++ b/articles/back-testing-and-hyperparameter-tuning.html @@ -136,19 +136,19 @@

Back Testing and Hyperparameter Tuning

#> Loading required package: modeltime
 #> Finn Submission Info
 #>  Experiment Name: finnts_fcst
-#>  Run Name: get_prepped_models-20240427T035416Z
+#>  Run Name: get_prepped_models-20240429T224931Z
 #> 
 #>  Prepping Data
-#>  Prepping Data [951ms]
+#>  Prepping Data [1s]
 #> 
 #>  Creating Model Workflows
-#>  Creating Model Workflows [97ms]
+#>  Creating Model Workflows [106ms]
 #> 
 #>  Creating Model Hyperparameters
-#>  Creating Model Hyperparameters [139ms]
+#>  Creating Model Hyperparameters [152ms]
 #> 
 #>  Creating Train Test Splits
-#>  Creating Train Test Splits [342ms]
+#>  Creating Train Test Splits [354ms]
 #> 
 #> # A tibble: 31 × 4
 #>    Run_Type        Train_Test_ID Train_End  Test_End  
diff --git a/articles/models-used-in-finnts.html b/articles/models-used-in-finnts.html
index 48af794f..f48ddcbe 100644
--- a/articles/models-used-in-finnts.html
+++ b/articles/models-used-in-finnts.html
@@ -158,7 +158,7 @@ 

Ensemble Models

Multistep Horizon Models

-

By default within prep_models(), the multistep_horizon argument is set to TRUE. Meaning a multistep horizon approach is taken for specific multivariate models trained on the R1 feature engineering recipe. Below are the models that can run as multistep.

+

By default within prep_models(), the multistep_horizon argument is set to FALSE. If set to TRUE, a multistep horizon approach is taken for specific multivariate models trained on the R1 feature engineering recipe. Below are the models that can run as multistep.

-

A multistep model optimizes for each period in a forecast horizon. Let’s take an example of a monthly data set with a forecast horizon of 3. When creating the features for the R1 recipe, finnts will create lags of 1, 2, 3, 6, 9, 12 months. Then when training a mulitstep model it will iteratively use specific features to train the model. First it will train a model on the first forecast horizon (H1), where it will use all available feature lags. Then for H2 it will use lags of 2 or more. Finally for H3 it will use lags of 3 or more. So the final model is actually a collection of multiple models that each trained on a specific horizon. This let’s the model optimize for using all available data when creating the forecast. so in our example one glmnet model actually has three separate horizon specific models under the hood.

+

A multistep model optimizes for each period in a forecast horizon. Let’s take an example of a monthly data set with a forecast horizon of 3. When creating the features for the R1 recipe, finnts will create lags of 1, 2, 3, 6, 9, 12 months. Then when training a mulitstep model it will iteratively use specific features to train the model. First it will train a model on the first forecast horizon (H1), where it will use all available feature lags. Then for H2 it will use lags of 2 or more. Finally for H3 it will use lags of 3 or more. So the final model is actually a collection of multiple models that each trained on a specific horizon. This lets the model optimize for using all available data when creating the forecast. So in our example, one glmnet model actually has three separate horizon specific models under the hood.

A few more things to mention. If multistep_horizon is TRUE then other multivariate models like arima-boost or prophet-xregs will not run a multistep horizon approach. Instead they will use lags that are equal to or greater than the forecast horizon. One set of hyperparameters will be chosen for each multistep model, meaning glmnet will only use one combination of final hyperparameters and apply it to each horizon model. Multistep models are not ran for the R2 recipe, since it has it’s own way of dealing with multiple horizons. Finally if feature_selection is turned on, it will be ran for each horizon specific model, meaning for a 3 month forecast horizon the feature selection process will be ran 3 times. One for each combination of features tied to a specific horizon.

diff --git a/favicon-16x16.png b/favicon-16x16.png index 823a4243..9e9a6c59 100644 Binary files a/favicon-16x16.png and b/favicon-16x16.png differ diff --git a/favicon-32x32.png b/favicon-32x32.png index c310822d..ab2f28b8 100644 Binary files a/favicon-32x32.png and b/favicon-32x32.png differ diff --git a/pkgdown.yml b/pkgdown.yml index a2b6766b..bc370939 100644 --- a/pkgdown.yml +++ b/pkgdown.yml @@ -13,7 +13,7 @@ articles: models-used-in-finnts: models-used-in-finnts.html parallel-processing: parallel-processing.html tips-for-production: tips-for-production.html -last_built: 2024-04-27T03:52Z +last_built: 2024-04-29T22:47Z urls: reference: https://microsoft.github.io/finnts/reference article: https://microsoft.github.io/finnts/articles diff --git a/reference/ensemble_models.html b/reference/ensemble_models.html index 72bcb521..b9b91b7e 100644 --- a/reference/ensemble_models.html +++ b/reference/ensemble_models.html @@ -161,7 +161,7 @@

Examples

run_info <-
set_run_info() #> Finn Submission Info #> Experiment Name: finn_fcst -#> Run Name: finn_fcst-20240427T035210Z +#> Run Name: finn_fcst-20240429T224721Z #> prep_data(run_info, @@ -172,7 +172,7 @@

Examples

forecast_horizon = 3 ) #> Prepping Data -#> Prepping Data [1.4s] +#> Prepping Data [1.5s] #> prep_models(run_info, @@ -180,13 +180,13 @@

Examples

num_hyperparameters = 2 ) #> Creating Model Workflows -#> Creating Model Workflows [180ms] +#> Creating Model Workflows [178ms] #> #> Creating Model Hyperparameters -#> Creating Model Hyperparameters [185ms] +#> Creating Model Hyperparameters [186ms] #> #> Creating Train Test Splits -#> Creating Train Test Splits [279ms] +#> Creating Train Test Splits [284ms] #> train_models(run_info, @@ -196,23 +196,35 @@

Examples

#>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. #> Training Individual Models +#> There were issues with some computations A: x1 #>B | warning: A correlation computation is required, but `estimate` is constant and has 0 #> standard deviation, resulting in a divide by 0 error. `NA` will be returned. +#> There were issues with some computations A: x1 +#> There were issues with some computations A: x3 B: x1 +#> #> Training Individual Models #>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. #> Training Individual Models +#> There were issues with some computations A: x2 +#> There were issues with some computations A: x3 +#> +#> Training Individual Models #>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. #> Training Individual Models -#> Training Individual Models [9.4s] +#> There were issues with some computations A: x1 +#> There were issues with some computations A: x3 +#> +#> Training Individual Models +#> Training Individual Models [10.2s] #> ensemble_models(run_info) #> Training Ensemble Models #> Not all time series were completed within 'ensemble_models', expected 1 time series but only 0 time series were ran. Some ran into errors. #> Training Ensemble Models -#> Training Ensemble Models [116ms] +#> Training Ensemble Models [119ms] #> # }

diff --git a/reference/final_models.html b/reference/final_models.html index 67ba6ffc..9a46b4e3 100644 --- a/reference/final_models.html +++ b/reference/final_models.html @@ -174,7 +174,7 @@

Examples

run_info <- set_run_info() #> Finn Submission Info #> Experiment Name: finn_fcst -#> Run Name: finn_fcst-20240427T035222Z +#> Run Name: finn_fcst-20240429T224734Z #> prep_data(run_info, @@ -185,7 +185,7 @@

Examples

forecast_horizon = 3 ) #> Prepping Data -#> Prepping Data [3.2s] +#> Prepping Data [3.3s] #> prep_models(run_info, @@ -193,15 +193,15 @@

Examples

back_test_scenarios = 3 ) #> Creating Model Workflows -#> Creating Model Workflows [126ms] +#> Creating Model Workflows [120ms] #> #> Creating Model Hyperparameters -#> Creating Model Hyperparameters [110ms] +#> Creating Model Hyperparameters [105ms] #> #> Creating Train Test Splits #> Turning ensemble models off since no multivariate models were chosen to run. #> Creating Train Test Splits -#> Creating Train Test Splits [263ms] +#> Creating Train Test Splits [261ms] #> train_models(run_info, @@ -214,29 +214,37 @@

Examples

#>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. #> Training Individual Models +#> There were issues with some computations A: x1 #>B | warning: A correlation computation is required, but `estimate` is constant and has 0 #> standard deviation, resulting in a divide by 0 error. `NA` will be returned. -#> Training Individual Models -#> There were issues with some computations A: x3 B: x2 +#> There were issues with some computations A: x1 #> There were issues with some computations A: x3 B: x2 #> #> Training Individual Models #>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. #> Training Individual Models +#> There were issues with some computations A: x1 +#> There were issues with some computations A: x3 +#> +#> Training Individual Models #>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. #> Training Individual Models -#> There were issues with some computations A: x1 +#> There were issues with some computations A: x2 #>B | warning: A correlation computation is required, but `estimate` is constant and has 0 #> standard deviation, resulting in a divide by 0 error. `NA` will be returned. -#> There were issues with some computations A: x1 +#> There were issues with some computations A: x2 #> There were issues with some computations A: x3 B: x2 #> #> Training Individual Models #>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. #> Training Individual Models +#> There were issues with some computations A: x3 +#> There were issues with some computations A: x3 +#> +#> Training Individual Models #>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. #> Training Individual Models @@ -250,7 +258,7 @@

Examples

#>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. #> Training Individual Models -#> There were issues with some computations A: x1 +#> There were issues with some computations A: x3 #> There were issues with some computations A: x3 #> #> Training Individual Models @@ -261,12 +269,12 @@

Examples

#> There were issues with some computations A: x3 #> #> Training Individual Models -#> Training Individual Models [19.9s] +#> Training Individual Models [20.3s] #> final_models(run_info) #> Selecting Best Models -#> Selecting Best Models [444ms] +#> Selecting Best Models [452ms] #> # } diff --git a/reference/forecast_time_series.html b/reference/forecast_time_series.html index 5223163e..00c2c310 100644 --- a/reference/forecast_time_series.html +++ b/reference/forecast_time_series.html @@ -357,7 +357,7 @@

Examples

run_info <- set_run_info() #> Finn Submission Info #> Experiment Name: finn_fcst -#> Run Name: finn_fcst-20240427T035246Z +#> Run Name: finn_fcst-20240429T224759Z #> finn_forecast <- forecast_time_series( @@ -373,18 +373,18 @@

Examples

return_data = FALSE ) #> Prepping Data -#> Prepping Data [1.4s] +#> Prepping Data [1.5s] #> #> Creating Model Workflows -#> Creating Model Workflows [231ms] +#> Creating Model Workflows [226ms] #> #> Creating Model Hyperparameters -#> Creating Model Hyperparameters [156ms] +#> Creating Model Hyperparameters [152ms] #> #> Creating Train Test Splits #> Turning ensemble models off since no multivariate models were chosen to run. #> Creating Train Test Splits -#> Creating Train Test Splits [3.8s] +#> Creating Train Test Splits [3.9s] #> #> Training Individual Models #> Turning global models off since no multivariate models were chosen to run. @@ -403,15 +403,15 @@

Examples

#>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. #> Training Individual Models -#> Training Individual Models [12.4s] +#> Training Individual Models [12.8s] #> #> Training Ensemble Models #> Ensemble models have been turned off. #> Training Ensemble Models -#> Training Ensemble Models [18ms] +#> Training Ensemble Models [17ms] #> #> Selecting Best Models -#> Selecting Best Models [235ms] +#> Selecting Best Models [238ms] #> fcst_tbl <- get_forecast_data(run_info) diff --git a/reference/get_forecast_data.html b/reference/get_forecast_data.html index 5f2b7448..626898f7 100644 --- a/reference/get_forecast_data.html +++ b/reference/get_forecast_data.html @@ -134,7 +134,7 @@

Examples

run_info <- set_run_info() #> Finn Submission Info #> Experiment Name: finn_fcst -#> Run Name: finn_fcst-20240427T035305Z +#> Run Name: finn_fcst-20240429T224818Z #> prep_data(run_info, @@ -146,7 +146,7 @@

Examples

recipes_to_run = "R1" ) #> Prepping Data -#> Prepping Data [399ms] +#> Prepping Data [410ms] #> prep_models(run_info, @@ -154,15 +154,15 @@

Examples

num_hyperparameters = 1 ) #> Creating Model Workflows -#> Creating Model Workflows [81ms] +#> Creating Model Workflows [78ms] #> #> Creating Model Hyperparameters -#> Creating Model Hyperparameters [85ms] +#> Creating Model Hyperparameters [83ms] #> #> Creating Train Test Splits #> Turning ensemble models off since no multivariate models were chosen to run. #> Creating Train Test Splits -#> Creating Train Test Splits [357ms] +#> Creating Train Test Splits [354ms] #> train_models(run_info, @@ -182,15 +182,15 @@

Examples

#>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. #> Training Individual Models -#> There were issues with some computations A: x2 +#> There were issues with some computations A: x1 #>B | warning: A correlation computation is required, but `estimate` is constant and has 0 #> standard deviation, resulting in a divide by 0 error. `NA` will be returned. -#> There were issues with some computations A: x2 -#> There were issues with some computations A: x2 B: x7 +#> There were issues with some computations A: x1 +#> There were issues with some computations A: x2 B: x6 #> There were issues with some computations A: x3 B: x7 #> #> Training Individual Models -#> Training Individual Models [9.9s] +#> Training Individual Models [10.1s] #> final_models(run_info, diff --git a/reference/get_prepped_data.html b/reference/get_prepped_data.html index e259c3a4..15db5f2d 100644 --- a/reference/get_prepped_data.html +++ b/reference/get_prepped_data.html @@ -138,7 +138,7 @@

Examples

run_info <- set_run_info() #> Finn Submission Info #> Experiment Name: finn_fcst -#> Run Name: finn_fcst-20240427T035316Z +#> Run Name: finn_fcst-20240429T224830Z #> prep_data(run_info, @@ -150,7 +150,7 @@

Examples

recipes_to_run = "R1" ) #> Prepping Data -#> Prepping Data [403ms] +#> Prepping Data [413ms] #> R1_prepped_data_tbl <- get_prepped_data(run_info, diff --git a/reference/get_prepped_models.html b/reference/get_prepped_models.html index 76cbb7f3..ab0c16b3 100644 --- a/reference/get_prepped_models.html +++ b/reference/get_prepped_models.html @@ -130,7 +130,7 @@

Examples

run_info <- set_run_info() #> Finn Submission Info #> Experiment Name: finn_fcst -#> Run Name: finn_fcst-20240427T035317Z +#> Run Name: finn_fcst-20240429T224831Z #> prep_data(run_info, @@ -142,7 +142,7 @@

Examples

recipes_to_run = "R1" ) #> Prepping Data -#> Prepping Data [400ms] +#> Prepping Data [406ms] #> prep_models(run_info, @@ -153,12 +153,12 @@

Examples

#> Creating Model Workflows [81ms] #> #> Creating Model Hyperparameters -#> Creating Model Hyperparameters [77ms] +#> Creating Model Hyperparameters [74ms] #> #> Creating Train Test Splits #> Turning ensemble models off since no multivariate models were chosen to run. #> Creating Train Test Splits -#> Creating Train Test Splits [354ms] +#> Creating Train Test Splits [350ms] #> prepped_models_tbl <- get_prepped_models(run_info = run_info) diff --git a/reference/get_run_info.html b/reference/get_run_info.html index cac5c09f..3f8d38ec 100644 --- a/reference/get_run_info.html +++ b/reference/get_run_info.html @@ -151,7 +151,7 @@

Examples

) #> Finn Submission Info #> Experiment Name: finn_forecast -#> Run Name: test_run-20240427T035318Z +#> Run Name: test_run-20240429T224832Z #> run_info_tbl <- get_run_info( diff --git a/reference/get_trained_models.html b/reference/get_trained_models.html index 69bc76ce..132c3241 100644 --- a/reference/get_trained_models.html +++ b/reference/get_trained_models.html @@ -130,7 +130,7 @@

Examples

run_info <- set_run_info() #> Finn Submission Info #> Experiment Name: finn_fcst -#> Run Name: finn_fcst-20240427T035319Z +#> Run Name: finn_fcst-20240429T224832Z #> prep_data(run_info, @@ -142,7 +142,7 @@

Examples

recipes_to_run = "R1" ) #> Prepping Data -#> Prepping Data [394ms] +#> Prepping Data [408ms] #> prep_models(run_info, @@ -150,10 +150,10 @@

Examples

num_hyperparameters = 1 ) #> Creating Model Workflows -#> Creating Model Workflows [80ms] +#> Creating Model Workflows [78ms] #> #> Creating Model Hyperparameters -#> Creating Model Hyperparameters [77ms] +#> Creating Model Hyperparameters [73ms] #> #> Creating Train Test Splits #> Turning ensemble models off since no multivariate models were chosen to run. @@ -169,10 +169,11 @@

Examples

#>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. #> Training Individual Models -#> There were issues with some computations A: x2 +#> There were issues with some computations A: x1 #>B | warning: A correlation computation is required, but `estimate` is constant and has 0 #> standard deviation, resulting in a divide by 0 error. `NA` will be returned. -#> There were issues with some computations A: x2 +#> There were issues with some computations A: x1 +#> There were issues with some computations A: x2 B: x2 #> There were issues with some computations A: x3 B: x2 #> #> Training Individual Models @@ -182,18 +183,18 @@

Examples

#>B | warning: A correlation computation is required, but `estimate` is constant and has 0 #> standard deviation, resulting in a divide by 0 error. `NA` will be returned. #> Training Individual Models -#> There were issues with some computations A: x2 B: x4 +#> There were issues with some computations A: x2 B: x3 #> There were issues with some computations A: x3 B: x7 #> #> Training Individual Models -#> Training Individual Models [9.6s] +#> Training Individual Models [9.8s] #> final_models(run_info, average_models = FALSE ) #> Selecting Best Models -#> Selecting Best Models [199ms] +#> Selecting Best Models [201ms] #> models_tbl <- get_trained_models(run_info) diff --git a/reference/prep_data.html b/reference/prep_data.html index c046507c..804c511b 100644 --- a/reference/prep_data.html +++ b/reference/prep_data.html @@ -266,7 +266,7 @@

Examples

run_info <- set_run_info() #> Finn Submission Info #> Experiment Name: finn_fcst -#> Run Name: finn_fcst-20240427T035331Z +#> Run Name: finn_fcst-20240429T224845Z #> prep_data(run_info, diff --git a/reference/prep_models.html b/reference/prep_models.html index a8eece21..69fed878 100644 --- a/reference/prep_models.html +++ b/reference/prep_models.html @@ -183,7 +183,7 @@

Examples

run_info <- set_run_info() #> Finn Submission Info #> Experiment Name: finn_fcst -#> Run Name: finn_fcst-20240427T035333Z +#> Run Name: finn_fcst-20240429T224846Z #> prep_data(run_info, @@ -194,17 +194,17 @@

Examples

forecast_horizon = 3 ) #> Prepping Data -#> Prepping Data [3.3s] +#> Prepping Data [3.4s] #> prep_models(run_info, models_to_run = c("arima", "ets", "glmnet") ) #> Creating Model Workflows -#> Creating Model Workflows [216ms] +#> Creating Model Workflows [213ms] #> #> Creating Model Hyperparameters -#> Creating Model Hyperparameters [242ms] +#> Creating Model Hyperparameters [230ms] #> #> Creating Train Test Splits #> Creating Train Test Splits [372ms] diff --git a/reference/set_run_info.html b/reference/set_run_info.html index d54845a0..9c25687f 100644 --- a/reference/set_run_info.html +++ b/reference/set_run_info.html @@ -175,7 +175,7 @@

Examples

) #> Finn Submission Info #> Experiment Name: test_exp -#> Run Name: test_run_1-20240427T035338Z +#> Run Name: test_run_1-20240429T224852Z #> # } diff --git a/reference/train_models.html b/reference/train_models.html index d55e9b5c..7a0e0c89 100644 --- a/reference/train_models.html +++ b/reference/train_models.html @@ -189,7 +189,7 @@

Examples

run_info <- set_run_info() #> Finn Submission Info #> Experiment Name: finn_fcst -#> Run Name: finn_fcst-20240427T035339Z +#> Run Name: finn_fcst-20240429T224853Z #> prep_data(run_info, @@ -210,13 +210,13 @@

Examples

run_ensemble_models = FALSE ) #> Creating Model Workflows -#> Creating Model Workflows [181ms] +#> Creating Model Workflows [175ms] #> #> Creating Model Hyperparameters -#> Creating Model Hyperparameters [189ms] +#> Creating Model Hyperparameters [182ms] #> #> Creating Train Test Splits -#> Creating Train Test Splits [267ms] +#> Creating Train Test Splits [262ms] #> train_models(run_info) @@ -224,47 +224,48 @@

Examples

#>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. #> Training Individual Models +#> There were issues with some computations A: x1 #>B | warning: A correlation computation is required, but `estimate` is constant and has 0 #> standard deviation, resulting in a divide by 0 error. `NA` will be returned. +#> There were issues with some computations A: x1 +#> There were issues with some computations A: x3 B: x3 +#> #> Training Individual Models #>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. #> Training Individual Models -#>A | warning: A correlation computation is required, but the inputs are size zero or one and -#> the standard deviation cannot be computed. `NA` will be returned. -#> Training Individual Models -#> There were issues with some computations A: x1 +#> There were issues with some computations A: x3 #> There were issues with some computations A: x3 #> #> Training Individual Models #>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. #> Training Individual Models +#>A | warning: A correlation computation is required, but the inputs are size zero or one and +#> the standard deviation cannot be computed. `NA` will be returned. +#> Training Individual Models #>B | warning: A correlation computation is required, but `estimate` is constant and has 0 #> standard deviation, resulting in a divide by 0 error. `NA` will be returned. #> Training Individual Models -#> There were issues with some computations A: x2 B: x1 -#> There were issues with some computations A: x3 B: x2 -#> -#> Training Individual Models #>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. #> Training Individual Models +#> There were issues with some computations A: x1 #>B | warning: A correlation computation is required, but `estimate` is constant and has 0 #> standard deviation, resulting in a divide by 0 error. `NA` will be returned. -#> Training Individual Models -#> There were issues with some computations A: x3 B: x7 +#> There were issues with some computations A: x1 #> There were issues with some computations A: x3 B: x7 #> #> Training Individual Models #>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. #> Training Individual Models +#> There were issues with some computations A: x1 #>B | warning: A correlation computation is required, but `estimate` is constant and has 0 #> standard deviation, resulting in a divide by 0 error. `NA` will be returned. -#> Training Individual Models -#>A | warning: A correlation computation is required, but the inputs are size zero or one and -#> the standard deviation cannot be computed. `NA` will be returned. +#> There were issues with some computations A: x1 +#> There were issues with some computations A: x3 B: x7 +#> #> Training Individual Models #>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. @@ -276,16 +277,12 @@

Examples

#>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. #> Training Individual Models -#>B | warning: A correlation computation is required, but `estimate` is constant and has 0 -#> standard deviation, resulting in a divide by 0 error. `NA` will be returned. -#> Training Individual Models -#> There were issues with some computations A: x2 B: x4 -#> There were issues with some computations A: x3 B: x6 -#> -#> Training Individual Models #>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. #> Training Individual Models +#>B | warning: A correlation computation is required, but `estimate` is constant and has 0 +#> standard deviation, resulting in a divide by 0 error. `NA` will be returned. +#> Training Individual Models #>A | warning: A correlation computation is required, but the inputs are size zero or one and #> the standard deviation cannot be computed. `NA` will be returned. #> Training Individual Models @@ -300,7 +297,10 @@

Examples

#> There were issues with some computations A: x3 #> #> Training Individual Models -#> Training Individual Models [26.9s] +#>A | warning: A correlation computation is required, but the inputs are size zero or one and +#> the standard deviation cannot be computed. `NA` will be returned. +#> Training Individual Models +#> Training Individual Models [27.7s] #> # }