|
statcpp
C++17 Header-Only Statistics Library
|
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. | |
Structure storing one-way ANOVA results.
Holds all results from one-way ANOVA (between/within variation, statistics, group information).
| anova_row statcpp::one_way_anova_result::between |
| double statcpp::one_way_anova_result::df_total |
| double statcpp::one_way_anova_result::grand_mean |
| std::vector<double> statcpp::one_way_anova_result::group_means |
| std::vector<std::size_t> statcpp::one_way_anova_result::group_sizes |
| std::size_t statcpp::one_way_anova_result::n_groups |
| std::size_t statcpp::one_way_anova_result::n_total |
| double statcpp::one_way_anova_result::ss_total |
| anova_row statcpp::one_way_anova_result::within |