tatami_stats
Matrix statistics for tatami
Loading...
Searching...
No Matches
tatami_stats::skip_nan::GroupRssBuffers< Output_, Count_ > Struct Template Reference

Result buffers for skip_nan::group_rss(). More...

#include <group_rss.hpp>

Public Attributes

std::vector< Output_ * > mean
 
std::vector< Output_ * > rss
 
std::vector< Count_ * > count
 

Detailed Description

template<typename Output_, typename Count_>
struct tatami_stats::skip_nan::GroupRssBuffers< Output_, Count_ >

Result buffers for skip_nan::group_rss().

Template Parameters
Output_Floating-point type of the output data. This should be capable of storing NaNs.
Count_Numeric type of the non-NaN counts. This is typically an integer type.

Member Data Documentation

◆ mean

template<typename Output_ , typename Count_ >
std::vector<Output_*> tatami_stats::skip_nan::GroupRssBuffers< Output_, Count_ >::mean

Vector of length equal to the number of groups. Each element is a pointer to an array of length equal to the appropriate dimension extent (rows for row = true, columns otherwise). After skip_nan::group_rss(), this is filled with the sample mean of each row/column for the corresponding group.

◆ rss

template<typename Output_ , typename Count_ >
std::vector<Output_*> tatami_stats::skip_nan::GroupRssBuffers< Output_, Count_ >::rss

Vector of length equal to the number of groups. Each element is a pointer to an array of length equal to the appropriate dimension extent (rows for row = true, columns otherwise). After skip_nan::group_rss(), this is filled with the residual sum of squares of each row/column for the corresponding group.

◆ count

template<typename Output_ , typename Count_ >
std::vector<Count_*> tatami_stats::skip_nan::GroupRssBuffers< Output_, Count_ >::count

Vector of length equal to the number of groups. Each element is a pointer to an array of length equal to the appropriate dimension extent (rows for row = true, columns otherwise). After skip_nan::group_rss(), this is filled with the number of unskipped observations in each row/column for the corresponding group.


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