|
ParaView
|
Fit a multivariate Gaussian to data and/or assess Mahalanobis distance of each datum from the mean. More...
#include <vtkPSciVizMultiCorrelativeStats.h>


Public Member Functions | |
| virtual const char * | GetClassName () |
| virtual int | IsA (const char *type) |
| virtual void | PrintSelf (ostream &os, vtkIndent indent) |
Static Public Member Functions | |
| static vtkPSciVizMultiCorrelativeStats * | New () |
| static int | IsTypeOf (const char *type) |
| static vtkPSciVizMultiCorrelativeStats * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
| vtkPSciVizMultiCorrelativeStats () | |
| virtual | ~vtkPSciVizMultiCorrelativeStats () |
| virtual int | LearnAndDerive (vtkMultiBlockDataSet *model, vtkTable *inData) |
| virtual int | AssessData (vtkTable *observations, vtkDataObject *dataset, vtkMultiBlockDataSet *model) |
Fit a multivariate Gaussian to data and/or assess Mahalanobis distance of each datum from the mean.
This filter either computes a statistical model of a dataset or takes such a model as its second input. Then, the model (however it is obtained) may optionally be used to assess the input dataset.
This filter computes the covariance matrix for all the arrays you select plus the mean of each array. The model is thus a multivariate Gaussian distribution with the mean vector and variances provided. Data is assessed using this model by computing the Mahalanobis distance for each input point. This distance will always be positive.
The learned model output format is rather dense and can be confusing, so it is discussed here. The first filter output is a multiblock dataset consisting of 2 tables:
Covariance matrix and its Cholesky decomposition.
raw covariance table has 3 meaningful columns: 2 titled "Column1" and "Column2" whose entries generally refer to the N arrays you selected when preparing the filter and 1 column titled "Entries" that contains numeric values. The first row will always contain the number of observations in the statistical analysis. The next N rows contain the mean for each of the N arrays you selected. The remaining rows contain covariances of pairs of arrays.
The second table (covariance matrix and Cholesky decomposition) contains information derived from the raw covariance data of the first table. The first N rows of the first column contain the name of one array you selected for analysis. These rows are followed by a single entry labeled "Cholesky" for a total of N+1 rows. The second column, Mean contains the mean of each variable in the first N entries and the number of observations processed in the final (N+1) row.
The remaining columns (there are N, one for each array) contain 2 matrices in triangular format. The upper right triangle contains the covariance matrix (which is symmetric, so its lower triangle may be inferred). The lower left triangle contains the Cholesky decomposition of the covariance matrix (which is triangular, so its upper triangle is zero). Because the diagonal must be stored for both matrices, an additional row is required - hence the N+1 rows and the final entry of the column named "Column".
Definition at line 72 of file vtkPSciVizMultiCorrelativeStats.h.
| vtkPSciVizMultiCorrelativeStats::vtkPSciVizMultiCorrelativeStats | ( | ) | [protected] |
| virtual vtkPSciVizMultiCorrelativeStats::~vtkPSciVizMultiCorrelativeStats | ( | ) | [protected, virtual] |
| static vtkPSciVizMultiCorrelativeStats* vtkPSciVizMultiCorrelativeStats::New | ( | ) | [static] |
Reimplemented from vtkTableAlgorithm.
| virtual const char* vtkPSciVizMultiCorrelativeStats::GetClassName | ( | ) | [virtual] |
Reimplemented from vtkSciVizStatistics.
| static int vtkPSciVizMultiCorrelativeStats::IsTypeOf | ( | const char * | type | ) | [static] |
Reimplemented from vtkSciVizStatistics.
| virtual int vtkPSciVizMultiCorrelativeStats::IsA | ( | const char * | type | ) | [virtual] |
Reimplemented from vtkSciVizStatistics.
| static vtkPSciVizMultiCorrelativeStats* vtkPSciVizMultiCorrelativeStats::SafeDownCast | ( | vtkObject * | o | ) | [static] |
Reimplemented from vtkSciVizStatistics.
| virtual void vtkPSciVizMultiCorrelativeStats::PrintSelf | ( | ostream & | os, |
| vtkIndent | indent | ||
| ) | [virtual] |
Reimplemented from vtkSciVizStatistics.
| virtual int vtkPSciVizMultiCorrelativeStats::LearnAndDerive | ( | vtkMultiBlockDataSet * | model, |
| vtkTable * | inData | ||
| ) | [protected, virtual] |
Method subclasses must override to calculate a full model from the given input data. The model should be placed on the first output port of the passed vtkInformationVector as well as returned in the model parameter.
Implements vtkSciVizStatistics.
| virtual int vtkPSciVizMultiCorrelativeStats::AssessData | ( | vtkTable * | observations, |
| vtkDataObject * | dataset, | ||
| vtkMultiBlockDataSet * | model | ||
| ) | [protected, virtual] |
Method subclasses must override to assess an input table given a model of the proper type. The dataset parameter contains a shallow copy of input port 0 and should be modified to include the assessment. Adding new arrays to point/cell/vertex/edge data should not pose a problem, but any alterations to the dataset itself will probably require that you create a deep copy before modification.
| observations | - a table containing the field data of the dataset converted to a table |
| dataset | - a shallow copy of the input dataset that should be altered to include an assessment of the output. |
| model | - the statistical model with which to assess the observations. |
Implements vtkSciVizStatistics.
1.7.5.1