Uses of Class
adams.data.spreadsheet.rowscore.AbstractRowScore
-
Packages that use AbstractRowScore Package Description adams.data.spreadsheet.rowscore adams.flow.transformer -
-
Uses of AbstractRowScore in adams.data.spreadsheet.rowscore
Subclasses of AbstractRowScore in adams.data.spreadsheet.rowscore Modifier and Type Class Description classAbstractMetaRowScoreAncestor for row score algorithms that use a base algorithm.classArrayStatisticApplies the specified array statistic algorithm and returns the specified cell's value as score.
NB: Only collects numeric values from the rows.classColumnSubsetApplies the specified base row score algorithm to the specified subset of columns and returns the calculated score.classDistanceFromConstantCalculates the Euclidean distance to a timeseries that is basically a 'flat-liner' with a constant value.classEqualWidthBinsSplits the row into bins with (more or less) same size and applies the base score algorithm to each of the bins.classMathExpressionUses a mathematical expression to post-process or combine the score(s) returned from the base row score algorithm.
The individual scores of the base algorithm can be accessed using placeholders of the format: [n] with 'n' being the 1-based index in the score array.
'null' scores get interpreted as 'NaN'.classMultiRowScoreApplies the specified row score algorithms sequentially to the row and combines the output.classNonMissingComputes the percentage of non-missing values per row.classRowStatisticApplies the specified row statistic algorithm and returns the specified cell's value as score.classSAXDistanceFromBaselineApplies adams.data.filter.RowNorm to the timeseries before calculating the SAX distance of the timeseries to the baseline.Fields in adams.data.spreadsheet.rowscore declared as AbstractRowScore Modifier and Type Field Description protected AbstractRowScoreAbstractMetaRowScore. m_RowScorethe row score to use on the subset.protected AbstractRowScore[]MultiRowScore. m_RowScoresthe row score algorithms to use.Methods in adams.data.spreadsheet.rowscore that return AbstractRowScore Modifier and Type Method Description protected AbstractRowScoreAbstractMetaRowScore. getDefaultRowScore()Returns the default row score algorithm to use.AbstractRowScoreAbstractMetaRowScore. getRowScore()Returns the row score algorithm in use.AbstractRowScore[]MultiRowScore. getRowScores()Returns the row score algorithms to use.Methods in adams.data.spreadsheet.rowscore with parameters of type AbstractRowScore Modifier and Type Method Description voidAbstractMetaRowScore. setRowScore(AbstractRowScore value)Sets the row score algorithm to use.voidMultiRowScore. setRowScores(AbstractRowScore[] value)Sets the row score algorithms to use. -
Uses of AbstractRowScore in adams.flow.transformer
Fields in adams.flow.transformer declared as AbstractRowScore Modifier and Type Field Description protected AbstractRowScoreSpreadSheetInsertRowScore. m_Scorethe score algorithm to use.Methods in adams.flow.transformer that return AbstractRowScore Modifier and Type Method Description AbstractRowScoreSpreadSheetInsertRowScore. getScore()Returns the score algorithm to use.Methods in adams.flow.transformer with parameters of type AbstractRowScore Modifier and Type Method Description voidSpreadSheetInsertRowScore. setScore(AbstractRowScore value)Sets the score algorithm to use.
-