![]() |
LINE Solver (C++)
Templated C++ port of the LINE queueing solver
|
Outcome of the Shapiro-Wilk normality test. More...
#include <line/api/sim/sim_shapirowilk.h>
Public Attributes | |
| T | W |
| The Shapiro-Wilk statistic. | |
| double | pvalue = 1.0 |
| p-value, small means normality is rejected | |
| double | zscore = 0.0 |
| Normalized statistic, NaN when n = 3. | |
| bool | reject = false |
| True when pvalue < alpha. | |
| std::size_t | nobs = 0 |
| Number of observations n. | |
Outcome of the Shapiro-Wilk normality test.
Definition at line 53 of file sim_shapirowilk.h.
| std::size_t line::sim::ShapiroWilkResult< T >::nobs = 0 |
Number of observations n.
Definition at line 58 of file sim_shapirowilk.h.
Referenced by line::sim::sim_shapirowilk().
| double line::sim::ShapiroWilkResult< T >::pvalue = 1.0 |
p-value, small means normality is rejected
Definition at line 55 of file sim_shapirowilk.h.
Referenced by line::sim::sim_shapirowilk().
| bool line::sim::ShapiroWilkResult< T >::reject = false |
True when pvalue < alpha.
Definition at line 57 of file sim_shapirowilk.h.
Referenced by line::sim::sim_shapirowilk().
| T line::sim::ShapiroWilkResult< T >::W |
The Shapiro-Wilk statistic.
Definition at line 54 of file sim_shapirowilk.h.
Referenced by line::sim::sim_shapirowilk().
| double line::sim::ShapiroWilkResult< T >::zscore = 0.0 |
Normalized statistic, NaN when n = 3.
Definition at line 56 of file sim_shapirowilk.h.
Referenced by line::sim::sim_shapirowilk().