|
statcpp
C++17 Header-Only Statistics Library
|
Structure to store prediction interval results. More...
#include <linear_regression.hpp>
Public Attributes | |
| double | prediction |
| Predicted value. | |
| double | lower |
| Lower bound. | |
| double | upper |
| Upper bound. | |
| double | se_prediction |
| Standard error of prediction. | |
Structure to store prediction interval results.
Holds predicted values and their confidence intervals (or prediction intervals).
Definition at line 84 of file linear_regression.hpp.
| double statcpp::prediction_interval::lower |
Lower bound.
Definition at line 86 of file linear_regression.hpp.
| double statcpp::prediction_interval::prediction |
Predicted value.
Definition at line 85 of file linear_regression.hpp.
| double statcpp::prediction_interval::se_prediction |
Standard error of prediction.
Definition at line 88 of file linear_regression.hpp.
| double statcpp::prediction_interval::upper |
Upper bound.
Definition at line 87 of file linear_regression.hpp.