statcpp
C++17 Header-Only Statistics Library
Loading...
Searching...
No Matches
Public Attributes | List of all members
statcpp::prediction_interval Struct Reference

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.
 

Detailed Description

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.

Member Data Documentation

◆ lower

double statcpp::prediction_interval::lower

Lower bound.

Definition at line 86 of file linear_regression.hpp.

◆ prediction

double statcpp::prediction_interval::prediction

Predicted value.

Definition at line 85 of file linear_regression.hpp.

◆ se_prediction

double statcpp::prediction_interval::se_prediction

Standard error of prediction.

Definition at line 88 of file linear_regression.hpp.

◆ upper

double statcpp::prediction_interval::upper

Upper bound.

Definition at line 87 of file linear_regression.hpp.


The documentation for this struct was generated from the following file: