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

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

#include <anova.hpp>

Public Attributes

anova_row between
 Between-group variation.
 
anova_row within
 Within-group variation (residual)
 
double ss_total
 Total sum of squares.
 
double df_total
 Total degrees of freedom.
 
std::size_t n_groups
 Number of groups.
 
std::size_t n_total
 Total number of observations.
 
double grand_mean
 Grand mean.
 
std::vector< double > group_means
 Mean of each group.
 
std::vector< std::size_t > group_sizes
 Size of each group.
 

Detailed Description

Structure storing one-way ANOVA results.

Holds all results from one-way ANOVA (between/within variation, statistics, group information).

Definition at line 49 of file anova.hpp.

Member Data Documentation

◆ between

anova_row statcpp::one_way_anova_result::between

Between-group variation.

Definition at line 50 of file anova.hpp.

◆ df_total

double statcpp::one_way_anova_result::df_total

Total degrees of freedom.

Definition at line 53 of file anova.hpp.

◆ grand_mean

double statcpp::one_way_anova_result::grand_mean

Grand mean.

Definition at line 56 of file anova.hpp.

◆ group_means

std::vector<double> statcpp::one_way_anova_result::group_means

Mean of each group.

Definition at line 57 of file anova.hpp.

◆ group_sizes

std::vector<std::size_t> statcpp::one_way_anova_result::group_sizes

Size of each group.

Definition at line 58 of file anova.hpp.

◆ n_groups

std::size_t statcpp::one_way_anova_result::n_groups

Number of groups.

Definition at line 54 of file anova.hpp.

◆ n_total

std::size_t statcpp::one_way_anova_result::n_total

Total number of observations.

Definition at line 55 of file anova.hpp.

◆ ss_total

double statcpp::one_way_anova_result::ss_total

Total sum of squares.

Definition at line 52 of file anova.hpp.

◆ within

anova_row statcpp::one_way_anova_result::within

Within-group variation (residual)

Definition at line 51 of file anova.hpp.


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