Uses of Interface
adams.core.ErrorProvider
-
-
Uses of ErrorProvider in adams.data.io.input
Subinterfaces of ErrorProvider in adams.data.io.input Modifier and Type Interface Description interfaceChunkedSpreadSheetReaderInterface for spreadsheet readers that can read data in chunks rather than only all at once.interfaceInitialRowSkippingSpreadSheetReaderInterface for spreadsheet readers that can skip initial rows.interfaceMissingValueSpreadSheetReaderInterface for spreadsheet readers that handle missing values.interfaceMultiSheetSpreadSheetReader<T extends Range>Interface for spreadsheet readers that can read multiple sheets from the same document.interfaceNoHeaderSpreadSheetReaderInterface for spreadsheet readers that support sheets with no headers.interfaceSpreadSheetReaderInterface for spreadsheet readers.interfaceWindowedSpreadSheetReaderAllows the retrieval of a certain "window" of rows from the data.Classes in adams.data.io.input that implement ErrorProvider Modifier and Type Class Description classAbstractExcelSpreadSheetReader<T extends Range>Ancestor for special Excel readers.classAbstractMultiSheetSpreadSheetReader<T extends Range>Ancestor for spreadsheet readers that can read multiple sheets from a document in one go.classAbstractMultiSheetSpreadSheetReaderWithMissingValueSupport<T extends Range>Ancestor for spreadsheet readers that allow the specification of a custom missing value string.classAbstractSpreadSheetReaderAncestor for classes that can read spreadsheets.classAbstractSpreadSheetReaderWithMissingValueSupportAncestor for spreadsheet readers that allow the specification of a custom missing value string.classAbstractWekaSpreadSheetReaderAncestor for WEKA file format readers.classAccessSpreadSheetReaderAllows the reading of MS Access databases.classArffSpreadSheetReaderReads WEKA datasets in ARFF format and turns them into spreadsheets.classAutoWidthTabularSpreadSheetReaderReads simple tabular text files, using column widths as defined by the header row.classCsvSpreadSheetReaderReads CSV files.
It is possible to force columns to be text.classExcelSpreadSheetReaderReads MS Excel files (using DOM).classExcelStreamingSpreadSheetReaderReads large MS Excel XML files (using streaming via SAX).
Increasing the debug level to more than 1 results in outputting detailed information on cells.classFastCsvSpreadSheetReaderSimplified CSV spreadsheet reader for loading large files.classFixedTabularSpreadSheetReaderReads simple tabular text files with fixed column widths, as used by dot matrix printers in days gone by.classGnumericSpreadSheetReaderReads Gnumeric workbook files (GZIP compressed or uncompressed XML), version 1.10.13.classJSONSpreadSheetReaderReads WEKA datasets in JSON format and turns them into spreadsheets.classLibSVMSpreadSheetReaderReads WEKA datasets in LibSVM format and turns them into spreadsheets.classMat5SpreadSheetReaderReads Matlab .mat files (format 5)
classMatlabSpreadSheetReaderReads WEKA datasets in ARFF format and turns them into spreadsheets.classODFSpreadSheetReaderReads ODF (Open Document Format) spreadsheet files.
If a row contains only empty cells, this is interpreted as the end of the sheet.classPNGSpreadSheetReaderReads PNGs as spreadsheet, e.g., for reading indexed PNGs.classPropertiesSpreadSheetReaderTurns Java properties files into spreadsheets with two columns: Key and Value.classSimpleArffSpreadSheetReaderSimple reader for Weka ARFF files, only supports NUMERIC, NOMINAL, STRING and DATE attributes.classSimpleCsvSpreadSheetReaderReads CSV files.
It is possible to force columns to be text.classSimpleStreamSpreadSheetReaderReads file in simple stream format:
- one spreadsheet row per line in the output
- cells are separated by TAB
- cell format: '<1-based index>:<content-type ID>:<content>'
NB: tabs, new lines etc in the content get backquoted.classSqlDumpSpreadSheetReaderReads in SQL dump files.classSVMLightSpreadSheetReaderReads WEKA datasets in ARFF format and turns them into spreadsheets.classTsvSpreadSheetReaderReads TSV (tab-separated values) files.
It is possible to force columns to be text.classXrffSpreadSheetReaderReads WEKA datasets in ARFF format and turns them into spreadsheets. -
Uses of ErrorProvider in adams.data.spreadsheet.colstatistic
Classes in adams.data.spreadsheet.colstatistic that implement ErrorProvider Modifier and Type Class Description classAbstractColumnStatisticAncestor for column statistic generators.classAbstractDoubleArrayColumnStatisticAncestor for statistics that just use all numeric values in the column.classArrayStatisticPushes the numeric column through the specified array statistic.classDistinctCounts the distinct numeric/string values.classIQRCalculates the IQR (interquartile range) for a numeric column.classLabelCountsCounts how often a label (ie string) occurs.classMaxCalculates the max for a numeric column.classMeanCalculates the mean for a numeric column.classMedianCalculates the median for a numeric column.classMinCalculates the min for a numeric column.classMissingCounts the missing cells.classMultiColumnStatisticCombines the statistics calculated from the specified statistic generators.classPercentileCalculates the specified percentile.classSignalToNoiseRatioCalculates the signal to noise ratio for a numeric column.
For more information, see:
WikiPedia.classStandardDeviationCalculates the standard deviation (population or sample).classSumCalculates the sum for a numeric column.classUniqueCounts the unique occurrences of numeric/string values. -
Uses of ErrorProvider in adams.data.spreadsheet.matrixstatistic
Classes in adams.data.spreadsheet.matrixstatistic that implement ErrorProvider Modifier and Type Class Description classAbstractMatrixStatisticAncestor for matrix statistic generators, i.e., ones that take the specified subset of the spreadsheet into account.classMaxDetermines the largest numeric value in the matrix, skips NaN and infinity values.classMeanDetermines the mean of the numeric values in the matrix, skips NaN and infinite values.classMedianDetermines the median of the numeric values in the matrix, skips NaN and infinite values.classMinDetermines the smallest numeric value in the matrix, skips NaN and infinite values.classMissingCounts the missing cells in the spreadsheet.classMultiMatrixStatisticCombines the statistics calculated from the specified statistic generators.classStandardDeviationDetermines the standard deviation of the numeric values in the matrix, skips NaN and infinite values. -
Uses of ErrorProvider in adams.data.spreadsheet.rowscore
Classes in adams.data.spreadsheet.rowscore that implement ErrorProvider Modifier and Type Class Description classAbstractMetaRowScoreAncestor for row score algorithms that use a base algorithm.classAbstractRowScoreAncestor for algorithms that calculate a score for a spreadsheet row.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. -
Uses of ErrorProvider in adams.data.spreadsheet.rowstatistic
Classes in adams.data.spreadsheet.rowstatistic that implement ErrorProvider Modifier and Type Class Description classAbstractDoubleArrayRowStatisticAncestor for statistics that just use all numeric values in the row.classAbstractRowStatisticAncestor for row statistic generators.classArrayStatisticPushes the numeric row through the specified array statistic.classDistinctCounts the distinct numeric/string values.classIQRCalculates the IQR (interquartile range) for a numeric row.classLabelCountsCounts how often a label (ie string) occurs.classMaxCalculates the max for a numeric row.classMeanCalculates the mean for a numeric row.classMedianCalculates the median for a numeric row.classMinCalculates the min for a numeric row.classMissingCounts the missing cells.classMultiRowStatisticCombines the statistics calculated from the specified statistic generators.classPercentileCalculates the specified percentile.classSignalToNoiseRatioCalculates the signal to noise ratio for a numeric row.
For more information, see:
WikiPedia.classStandardDeviationCalculates the standard deviation (population or sample).classSumCalculates the sum for a numeric row.classUniqueCounts the unique occurrences of numeric/string values. -
Uses of ErrorProvider in adams.flow.control.plotprocessor
Classes in adams.flow.control.plotprocessor that implement ErrorProvider Modifier and Type Class Description classAbstractPlotProcessorAncestor for processors of plot containers.classAbstractPlotProcessorWithBuffer<T>Ancestor for post-processors that work on a buffer of plot containers.classExpressionApplies a mathematical function to the data (separately for X and Y).
Values can be accessed using 'xN' and 'yN' with 'N' being the 1-based index in the current window.classLOWESSA processor that applies LOWESS smoothing.
For more information see:
WikiPedia.classPassThroughDummy processor which never generates any new containers.classSavitzkyGolayA processor that applies SavitzkyGolay smoothing.
For more information see:
A.classSimpleSavitzkyGolayA processor that applies SimpleSavitzkyGolay smoothing.
For more information see:
A. -
Uses of ErrorProvider in adams.flow.control.removeoutliers
Classes in adams.flow.control.removeoutliers that implement ErrorProvider Modifier and Type Class Description classAbstractNumericOutlierDetectorAncestor for numeric outlier detection.classAbstractOutlierDetectorAncestor for outlier detectors of actual vs predicted.classIQRInterquartile range based detector.
If difference between actual/predicted is more than the factor of standard deviations away from the quartial 0.25/0.75, then the point gets flagged as outlier.classMeanAbsoluteErrorMean absolute error (MAE) based detector.
If difference between actual/predicted is more than MAE * FACTOR, then the point gets flagged as outlier.classMultiOutlierDetectorApplies the specified outlier detectors sequentially and combines the detected outliers either via union or intersect.classNullDummy outlier detector, detects no outliers at all.classStdDevStandard deviation based detector.
If difference between actual/predicted is more than the factor of standard deviations away from the mean, then the point gets flagged as outlier. -
Uses of ErrorProvider in adams.gui.scripting
Classes in adams.gui.scripting that implement ErrorProvider Modifier and Type Class Description classAbstractScriptingEngineProcesses scripting commands.classScriptingEngineProcesses scripting commands. -
Uses of ErrorProvider in weka.classifiers
Classes in weka.classifiers that implement ErrorProvider Modifier and Type Class Description classAggregateEvaluationsAllows the aggregation ofEvaluationobjects.
-