#include <vtkBivariateStatisticsAlgorithm.h>
Definition at line 50 of file vtkBivariateStatisticsAlgorithm.h.
Public Types | |
typedef vtkStatisticsAlgorithm | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | AddColumnPair (const char *namColX, const char *namColY) |
virtual int | RequestSelectedColumns () |
Static Public Member Functions | |
static int | IsTypeOf (const char *type) |
static vtkBivariateStatisticsAlgorithm * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
vtkBivariateStatisticsAlgorithm () | |
~vtkBivariateStatisticsAlgorithm () | |
virtual void | Assess (vtkTable *inData, vtkDataObject *inMeta, vtkTable *outData) |
Reimplemented from vtkStatisticsAlgorithm.
Reimplemented in vtkContingencyStatistics, vtkCorrelativeStatistics, vtkExtractHistogram2D, vtkPContingencyStatistics, vtkPCorrelativeStatistics, and vtkPExtractHistogram2D.
Definition at line 53 of file vtkBivariateStatisticsAlgorithm.h.
vtkBivariateStatisticsAlgorithm::vtkBivariateStatisticsAlgorithm | ( | ) | [protected] |
vtkBivariateStatisticsAlgorithm::~vtkBivariateStatisticsAlgorithm | ( | ) | [protected] |
virtual const char* vtkBivariateStatisticsAlgorithm::GetClassName | ( | ) | [virtual] |
Reimplemented from vtkStatisticsAlgorithm.
Reimplemented in vtkContingencyStatistics, vtkCorrelativeStatistics, vtkExtractHistogram2D, vtkPContingencyStatistics, vtkPCorrelativeStatistics, and vtkPExtractHistogram2D.
static int vtkBivariateStatisticsAlgorithm::IsTypeOf | ( | const char * | name | ) | [static] |
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkStatisticsAlgorithm.
Reimplemented in vtkContingencyStatistics, vtkCorrelativeStatistics, vtkExtractHistogram2D, vtkPContingencyStatistics, vtkPCorrelativeStatistics, and vtkPExtractHistogram2D.
virtual int vtkBivariateStatisticsAlgorithm::IsA | ( | const char * | name | ) | [virtual] |
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkStatisticsAlgorithm.
Reimplemented in vtkContingencyStatistics, vtkCorrelativeStatistics, vtkExtractHistogram2D, vtkPContingencyStatistics, vtkPCorrelativeStatistics, and vtkPExtractHistogram2D.
static vtkBivariateStatisticsAlgorithm* vtkBivariateStatisticsAlgorithm::SafeDownCast | ( | vtkObject * | o | ) | [static] |
Reimplemented from vtkStatisticsAlgorithm.
Reimplemented in vtkContingencyStatistics, vtkCorrelativeStatistics, vtkExtractHistogram2D, vtkPContingencyStatistics, vtkPCorrelativeStatistics, and vtkPExtractHistogram2D.
void vtkBivariateStatisticsAlgorithm::PrintSelf | ( | ostream & | os, | |
vtkIndent | indent | |||
) | [virtual] |
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from vtkStatisticsAlgorithm.
Reimplemented in vtkContingencyStatistics, vtkCorrelativeStatistics, vtkExtractHistogram2D, vtkPContingencyStatistics, vtkPCorrelativeStatistics, and vtkPExtractHistogram2D.
void vtkBivariateStatisticsAlgorithm::AddColumnPair | ( | const char * | namColX, | |
const char * | namColY | |||
) |
Convenience method to create a request with a single column name pair (namColX
, namColY
) in a single call; this is the preferred method to select columns pairs, ensuring selection consistency (a pair of columns per request). Unlike SetColumnStatus(), you need not call RequestSelectedColumns() after AddColumnPair(). Warning: namColX
and namColY
are only checked for their validity as strings; no check is made that either are valid column names.
virtual int vtkBivariateStatisticsAlgorithm::RequestSelectedColumns | ( | ) | [virtual] |
Use the current column status values to produce a new request for statistics to be produced when RequestData() is called. Unlike the superclass implementation, this version adds a new request for every possible pairing of the selected columns instead of a single request containing all the columns.
Reimplemented from vtkStatisticsAlgorithm.
virtual void vtkBivariateStatisticsAlgorithm::Assess | ( | vtkTable * | inData, | |
vtkDataObject * | inMeta, | |||
vtkTable * | outData | |||
) | [protected, virtual] |
Execute the calculations required by the Assess option.
Implements vtkStatisticsAlgorithm.
Reimplemented in vtkContingencyStatistics.