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

Structure representing a row in the ANOVA table. More...

#include <anova.hpp>

Public Attributes

std::string source
 Name of the source of variation.
 
double ss
 Sum of Squares.
 
double df
 Degrees of freedom.
 
double ms
 Mean Square.
 
double f_statistic
 F statistic.
 
double p_value
 p-value
 

Detailed Description

Structure representing a row in the ANOVA table.

Holds statistics corresponding to each source of variation (between groups, within groups, etc.) in the ANOVA table.

Definition at line 35 of file anova.hpp.

Member Data Documentation

◆ df

double statcpp::anova_row::df

Degrees of freedom.

Definition at line 38 of file anova.hpp.

◆ f_statistic

double statcpp::anova_row::f_statistic

F statistic.

Definition at line 40 of file anova.hpp.

◆ ms

double statcpp::anova_row::ms

Mean Square.

Definition at line 39 of file anova.hpp.

◆ p_value

double statcpp::anova_row::p_value

p-value

Definition at line 41 of file anova.hpp.

◆ source

std::string statcpp::anova_row::source

Name of the source of variation.

Definition at line 36 of file anova.hpp.

◆ ss

double statcpp::anova_row::ss

Sum of Squares.

Definition at line 37 of file anova.hpp.


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