1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkStatisticsAlgorithm.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/*-------------------------------------------------------------------------
Copyright 2011 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------*/
#include "vtkToolkits.h"
#include "vtkStatisticsAlgorithm.h"
#include "vtkDataObjectCollection.h"
#include "vtkDoubleArray.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkMultiBlockDataSet.h"
#include "vtkSmartPointer.h"
#include "vtkStatisticsAlgorithmPrivate.h"
#include "vtkStringArray.h"
#include "vtkTable.h"
#include "vtkVariantArray.h"
#include <sstream>
vtkCxxSetObjectMacro(vtkStatisticsAlgorithm,AssessNames,vtkStringArray);
// ----------------------------------------------------------------------
vtkStatisticsAlgorithm::vtkStatisticsAlgorithm()
{
this->SetNumberOfInputPorts( 3 );
this->SetNumberOfOutputPorts( 3 );
// If not told otherwise, only run Learn option
this->LearnOption = true;
this->DeriveOption = true;
this->AssessOption = false;
this->TestOption = false;
// Most engines have only 1 primary table.
this->NumberOfPrimaryTables = 1;
this->AssessNames = vtkStringArray::New();
this->Internals = new vtkStatisticsAlgorithmPrivate;
}
// ----------------------------------------------------------------------
vtkStatisticsAlgorithm::~vtkStatisticsAlgorithm()
{
this->SetAssessNames( 0 );
delete this->Internals;
}
// ----------------------------------------------------------------------
void vtkStatisticsAlgorithm::PrintSelf( ostream &os, vtkIndent indent )
{
this->Superclass::PrintSelf( os, indent );
os << indent << "Learn: " << this->LearnOption << endl;
os << indent << "Derive: " << this->DeriveOption << endl;
os << indent << "Assess: " << this->AssessOption << endl;
os << indent << "Test: " << this->TestOption << endl;
os << indent << "NumberOfPrimaryTables: " << this->NumberOfPrimaryTables << endl;
if ( this->AssessNames )
{
this->AssessNames->PrintSelf( os, indent.GetNextIndent() );
}
os << indent << "Internals: " << this->Internals << endl;
}
// ----------------------------------------------------------------------
int vtkStatisticsAlgorithm::FillInputPortInformation( int port, vtkInformation* info )
{
if ( port == INPUT_DATA )
{
info->Set( vtkAlgorithm::INPUT_IS_OPTIONAL(), 1 );
info->Set( vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkTable" );
return 1;
}
else if ( port == INPUT_MODEL )
{
info->Set( vtkAlgorithm::INPUT_IS_OPTIONAL(), 1 );
info->Set( vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkMultiBlockDataSet" );
return 1;
}
else if ( port == LEARN_PARAMETERS )
{
info->Set( vtkAlgorithm::INPUT_IS_OPTIONAL(), 1 );
info->Set( vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkTable" );
return 1;
}
return 0;
}
// ----------------------------------------------------------------------
int vtkStatisticsAlgorithm::FillOutputPortInformation( int port, vtkInformation* info )
{
if ( port == OUTPUT_DATA )
{
info->Set( vtkDataObject::DATA_TYPE_NAME(), "vtkTable" );
return 1;
}
else if ( port == OUTPUT_MODEL )
{
info->Set( vtkDataObject::DATA_TYPE_NAME(), "vtkMultiBlockDataSet" );
return 1;
}
else if ( port == OUTPUT_TEST )
{
info->Set( vtkDataObject::DATA_TYPE_NAME(), "vtkTable" );
return 1;
}
return 0;
}
//---------------------------------------------------------------------------
void vtkStatisticsAlgorithm::SetColumnStatus( const char* namCol, int status )
{
this->Internals->SetBufferColumnStatus( namCol, status );
}
//---------------------------------------------------------------------------
void vtkStatisticsAlgorithm::ResetAllColumnStates()
{
this->Internals->ResetBuffer();
}
//---------------------------------------------------------------------------
int vtkStatisticsAlgorithm::RequestSelectedColumns()
{
return this->Internals->AddBufferToRequests();
}
//---------------------------------------------------------------------------
void vtkStatisticsAlgorithm::ResetRequests()
{
this->Internals->ResetRequests();
}
//---------------------------------------------------------------------------
vtkIdType vtkStatisticsAlgorithm::GetNumberOfRequests()
{
return this->Internals->GetNumberOfRequests();
}
//---------------------------------------------------------------------------
vtkIdType vtkStatisticsAlgorithm::GetNumberOfColumnsForRequest( vtkIdType request )
{
return this->Internals->GetNumberOfColumnsForRequest( request );
}
//---------------------------------------------------------------------------
const char* vtkStatisticsAlgorithm::GetColumnForRequest( vtkIdType r, vtkIdType c )
{
static vtkStdString columnName;
if ( this->Internals->GetColumnForRequest( r, c, columnName ) )
{
return columnName.c_str();
}
return 0;
}
//---------------------------------------------------------------------------
int vtkStatisticsAlgorithm::GetColumnForRequest( vtkIdType r, vtkIdType c, vtkStdString& columnName )
{
return this->Internals->GetColumnForRequest( r, c, columnName ) ? 1 : 0;
}
// ----------------------------------------------------------------------
void vtkStatisticsAlgorithm::AddColumn( const char* namCol )
{
if ( this->Internals->AddColumnToRequests( namCol ) )
{
this->Modified();
}
}
// ----------------------------------------------------------------------
void vtkStatisticsAlgorithm::AddColumnPair( const char* namColX, const char* namColY )
{
if ( this->Internals->AddColumnPairToRequests( namColX, namColY ) )
{
this->Modified();
}
}
// ----------------------------------------------------------------------
bool vtkStatisticsAlgorithm::SetParameter( const char* vtkNotUsed(parameter),
int vtkNotUsed(index),
vtkVariant vtkNotUsed(value) )
{
return false;
}
// ----------------------------------------------------------------------
int vtkStatisticsAlgorithm::RequestData( vtkInformation*,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector )
{
// Extract inputs
vtkTable* inData = vtkTable::GetData( inputVector[INPUT_DATA], 0 );
vtkMultiBlockDataSet* inModel = vtkMultiBlockDataSet::GetData( inputVector[INPUT_MODEL], 0 );
vtkTable* inParameters = vtkTable::GetData( inputVector[LEARN_PARAMETERS], 0 );
// Extract outputs
vtkTable* outData = vtkTable::GetData( outputVector, OUTPUT_DATA );
vtkMultiBlockDataSet* outModel = vtkMultiBlockDataSet::GetData( outputVector, OUTPUT_MODEL );
vtkTable* outTest = vtkTable::GetData( outputVector, OUTPUT_TEST );
// If input data table is not null then shallow copy it to output
if ( inData )
{
outData->ShallowCopy( inData );
}
// If there are any columns selected in the buffer which have not been
// turned into a request by RequestSelectedColumns(), add them now.
// There should be no effect if vtkStatisticsAlgorithmPrivate::Buffer is empty.
// This is here to accommodate the simpler user interfaces in OverView for
// univariate and bivariate algorithms which will not call RequestSelectedColumns()
// on their own.
this->RequestSelectedColumns();
// Calculate primary statistics if requested
if ( this->LearnOption )
{
// First, learn primary statistics from data; otherwise, only use input model as output model
this->Learn( inData, inParameters, outModel );
// Second, aggregate learned models with input model if one is present
if ( inModel )
{
vtkDataObjectCollection* models = vtkDataObjectCollection::New();
models->AddItem( inModel );
models->AddItem( outModel );
this->Aggregate( models, outModel );
models->Delete();
}
}
else
{
// No input data and no input model result in an error condition
if ( ! inModel )
{
vtkErrorMacro( "No model available AND no Learn phase requested. Cannot proceed with statistics algorithm." );
return 1;
}
// Since no learn phase was requested, the output model is equal to the input one
outModel->ShallowCopy( inModel );
}
// Calculate derived statistics if requested
if ( this->DeriveOption )
{
this->Derive( outModel );
}
// Assess data with respect to statistical model if requested
if ( this->AssessOption )
{
this->Assess( inData, outModel, outData );
}
// Calculate test statistics if requested
if ( this->TestOption )
{
this->Test( inData, outModel, outTest );
}
return 1;
}
// ----------------------------------------------------------------------
void vtkStatisticsAlgorithm::Assess( vtkTable* inData,
vtkMultiBlockDataSet* inMeta,
vtkTable* outData,
int numVariables )
{
if ( ! inData )
{
return;
}
if ( ! inMeta )
{
return;
}
// Loop over requests
for ( std::set<std::set<vtkStdString> >::const_iterator rit = this->Internals->Requests.begin();
rit != this->Internals->Requests.end(); ++ rit )
{
// Storage for variable names of the request (smart pointer because of several exit points)
vtkSmartPointer<vtkStringArray> varNames = vtkSmartPointer<vtkStringArray>::New();
varNames->SetNumberOfValues( numVariables );
// Each request must contain numVariables columns of interest (additional columns are ignored)
bool invalidRequest = false;
int v = 0;
for ( std::set<vtkStdString>::const_iterator it = rit->begin();
v < numVariables && it != rit->end(); ++ v, ++ it )
{
// Try to retrieve column with corresponding name in input data
vtkStdString varName = *it;
// If requested column does not exist in input, ignore request
if ( ! inData->GetColumnByName( varName ) )
{
vtkWarningMacro( "InData table does not have a column "
<< varName.c_str()
<< ". Ignoring request containing it." );
invalidRequest = true;
break;
}
// If column with corresponding name was found, store name
varNames->SetValue( v, varName );
}
if ( invalidRequest )
{
continue;
}
// If request is too short, it must also be ignored
if ( v < numVariables )
{
vtkWarningMacro( "Only "
<< v
<< " variables in the request while "
<< numVariables
<< "are needed. Ignoring request." );
continue;
}
// Store names to be able to use SetValueByName, and create the outData columns
vtkIdType nAssessments = this->AssessNames->GetNumberOfValues();
vtkStdString* names = new vtkStdString[nAssessments];
vtkIdType nRowData = inData->GetNumberOfRows();
for ( vtkIdType a = 0; a < nAssessments; ++ a )
{
// Prepare string for numVariables-tuple of variable names
std::ostringstream assessColName;
assessColName << this->AssessNames->GetValue( a )
<< "(";
for ( int i = 0 ; i < numVariables ; ++ i )
{
// Insert comma before each variable name, save the first one
if ( i > 0 )
{
assessColName << ",";
}
assessColName << varNames->GetValue( i );
}
assessColName << ")";
names[a] = assessColName.str().c_str();
// Create assessment columns with names <AssessmentName>(var1,...,varN)
vtkDoubleArray* assessColumn = vtkDoubleArray::New();
assessColumn->SetName( names[a] );
assessColumn->SetNumberOfTuples( nRowData );
outData->AddColumn( assessColumn );
assessColumn->Delete();
}
// Select assess functor
AssessFunctor* dfunc;
this->SelectAssessFunctor( outData,
inMeta,
varNames,
dfunc );
if ( ! dfunc )
{
// Functor selection did not work. Do nothing.
vtkWarningMacro( "AssessFunctors could not be allocated. Ignoring request." );
}
else
{
// Assess each entry of the column
vtkDoubleArray* assessResult = vtkDoubleArray::New();
for ( vtkIdType r = 0; r < nRowData; ++ r )
{
// Apply functor
(*dfunc)( assessResult, r );
for ( vtkIdType a = 0; a < nAssessments; ++ a )
{
// Store each assessment value in corresponding assessment column
outData->SetValueByName( r,
names[a],
assessResult->GetValue( a ) );
}
}
assessResult->Delete();
}
delete dfunc;
delete [] names;
}
}
|