|
statcpp
C++17 Header-Only Statistics Library
|
Structure to store cross-validation results. More...
#include <model_selection.hpp>
Public Attributes | |
| double | mean_error |
| double | se_error |
| std::vector< double > | fold_errors |
| std::size_t | n_folds |
Structure to store cross-validation results.
Definition at line 232 of file model_selection.hpp.
| std::vector<double> statcpp::cv_result::fold_errors |
Error for each fold
Definition at line 235 of file model_selection.hpp.
| double statcpp::cv_result::mean_error |
Mean error (MSE, MAE, etc.)
Definition at line 233 of file model_selection.hpp.
| std::size_t statcpp::cv_result::n_folds |
Number of folds
Definition at line 236 of file model_selection.hpp.
| double statcpp::cv_result::se_error |
Standard error of error
Definition at line 234 of file model_selection.hpp.