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

Structure storing two-way ANOVA results. More...

#include <anova.hpp>

Public Attributes

anova_row factor_a
 Effect of factor A.
 
anova_row factor_b
 Effect of factor B.
 
anova_row interaction
 Interaction effect.
 
anova_row error
 Error (residual)
 
double ss_total
 Total sum of squares.
 
double df_total
 Total degrees of freedom.
 
std::size_t levels_a
 Number of levels for factor A.
 
std::size_t levels_b
 Number of levels for factor B.
 
std::size_t n_total
 Total number of observations.
 
double grand_mean
 Grand mean.
 

Detailed Description

Structure storing two-way ANOVA results.

Holds all results from two-way ANOVA (factor A effect, factor B effect, interaction, error, etc.).

Definition at line 66 of file anova.hpp.

Member Data Documentation

◆ df_total

double statcpp::two_way_anova_result::df_total

Total degrees of freedom.

Definition at line 72 of file anova.hpp.

◆ error

anova_row statcpp::two_way_anova_result::error

Error (residual)

Definition at line 70 of file anova.hpp.

◆ factor_a

anova_row statcpp::two_way_anova_result::factor_a

Effect of factor A.

Definition at line 67 of file anova.hpp.

◆ factor_b

anova_row statcpp::two_way_anova_result::factor_b

Effect of factor B.

Definition at line 68 of file anova.hpp.

◆ grand_mean

double statcpp::two_way_anova_result::grand_mean

Grand mean.

Definition at line 76 of file anova.hpp.

◆ interaction

anova_row statcpp::two_way_anova_result::interaction

Interaction effect.

Definition at line 69 of file anova.hpp.

◆ levels_a

std::size_t statcpp::two_way_anova_result::levels_a

Number of levels for factor A.

Definition at line 73 of file anova.hpp.

◆ levels_b

std::size_t statcpp::two_way_anova_result::levels_b

Number of levels for factor B.

Definition at line 74 of file anova.hpp.

◆ n_total

std::size_t statcpp::two_way_anova_result::n_total

Total number of observations.

Definition at line 75 of file anova.hpp.

◆ ss_total

double statcpp::two_way_anova_result::ss_total

Total sum of squares.

Definition at line 71 of file anova.hpp.


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