vtkDescriptiveStatistics

Section: Visualization Toolkit Infovis Classes

Usage

Given a selection of columns of interest in an input data table, this class provides the following functionalities, depending on the execution mode it is executed in: * Learn: calculate extremal values, arithmetic mean, unbiased variance estimator, skewness estimator, and both sample and G2 estimation of the kurtosis excess. More precisely, Learn calculates the sums; if \p finalize is set to true (default), the final statistics are calculated with CalculateFromSums. Otherwise, only raw sums are output; this option is made for efficient parallel calculations. Note that CalculateFromSums is a static function, so that it can be used directly with no need to instantiate a vtkDescriptiveStatistics object. * Assess: given an input data set in port INPUT_DATA, and a reference value x along with an acceptable deviation d>0, assess all entries in the data set which are outside of [x-d,x+d].

.SECTION Thanks Thanks to Philippe Pebay and David Thompson from Sandia National Laboratories for implementing this class.

To create an instance of class vtkDescriptiveStatistics, simply invoke its constructor as follows

  obj = vtkDescriptiveStatistics

Methods

The class vtkDescriptiveStatistics has several methods that can be used. They are listed below. Note that the documentation is translated automatically from the VTK sources, and may not be completely intelligible. When in doubt, consult the VTK website. In the methods listed below, obj is an instance of the vtkDescriptiveStatistics class.