Uses of Interface
adams.data.spreadsheet.Row
-
-
Uses of Row in adams.data.conversion
Methods in adams.data.conversion with parameters of type Row Modifier and Type Method Description protected void
JsonToSpreadSheet. flatten(String path, net.minidev.json.JSONArray json, SpreadSheet sheet, Row header)
Flattens the JSON object.protected void
JsonToSpreadSheet. flatten(String path, net.minidev.json.JSONObject json, SpreadSheet sheet, Row header)
Flattens the JSON object.protected abstract T
AbstractSpreadSheetToMatrix. getValue(SpreadSheet sheet, Row row, int col)
Returns the cell value at the specified location.protected Double
SpreadSheetToDoubleMatrix. getValue(SpreadSheet sheet, Row row, int col)
Returns the cell value at the specified location.protected String
SpreadSheetToStringMatrix. getValue(SpreadSheet sheet, Row row, int col)
Returns the cell value at the specified location. -
Uses of Row in adams.data.featureconverter
Methods in adams.data.featureconverter that return Row Modifier and Type Method Description protected Row
SpreadSheet. doGenerateRow(List<Object> data)
Performs the actual generation of a row from the raw data. -
Uses of Row in adams.data.io.output
Methods in adams.data.io.output with parameters of type Row Modifier and Type Method Description protected boolean
AccessSpreadSheetWriter. doWrite(Row content, String filename)
Performs the actual writing.protected boolean
CsvSpreadSheetWriter. doWrite(Row content, Writer writer)
Performs the actual writing.protected boolean
AccessSpreadSheetWriter. doWriteHeader(Row header, String filename)
Writes the header.protected boolean
CsvSpreadSheetWriter. doWriteHeader(Row header, Writer writer)
Writes the header.boolean
AccessSpreadSheetWriter. write(Row content, File file)
Writes the given content to the specified file.boolean
AccessSpreadSheetWriter. write(Row content, OutputStream stream)
Writes the spreadsheet to the given output stream.boolean
AccessSpreadSheetWriter. write(Row content, Writer writer)
Writes the spreadsheet to the given writer.boolean
AccessSpreadSheetWriter. write(Row content, String filename)
Writes the spreadsheet to the given file.boolean
CsvSpreadSheetWriter. write(Row content, File file)
Writes the given content to the specified file.boolean
CsvSpreadSheetWriter. write(Row content, OutputStream stream)
Writes the spreadsheet to the given output stream.boolean
CsvSpreadSheetWriter. write(Row content, Writer writer)
Writes the spreadsheet to the given writer.boolean
CsvSpreadSheetWriter. write(Row content, String filename)
Writes the spreadsheet to the given file.boolean
IncrementalSpreadSheetWriter. write(Row content, File file)
Writes the given content to the specified file.boolean
IncrementalSpreadSheetWriter. write(Row content, OutputStream stream)
Writes the spreadsheet to the given output stream.boolean
IncrementalSpreadSheetWriter. write(Row content, Writer writer)
Writes the spreadsheet to the given writer.boolean
IncrementalSpreadSheetWriter. write(Row content, String filename)
Writes the spreadsheet to the given file.protected boolean
AccessSpreadSheetWriter. writeHeader(Row header, String filename)
Writes the header, if necessary.protected boolean
CsvSpreadSheetWriter. writeHeader(Row header, Writer writer)
Writes the header, if necessary.protected boolean
SimpleStreamSpreadSheetWriter. writeRow(BufferedWriter writer, SpreadSheet sheet, Row row)
Writes a row using the supplied writer. -
Uses of Row in adams.data.spreadsheet
Subinterfaces of Row in adams.data.spreadsheet Modifier and Type Interface Description interface
DataRow
The interface for data rows.Classes in adams.data.spreadsheet that implement Row Modifier and Type Class Description class
AbstractRow
Ancestor for row objects.class
DataRowView
Provides a view to a data row.class
DenseDataRow
A row for dense data representation.class
DenseFloatDataRow
A row for dense data representation, using floats internally.class
HeaderRow
Represents a header row.class
SparseDataRow
Represents a data row with sparse data.class
SparseFloatDataRow
Represents a data row with sparse data, using floats internally for representing the cells.Fields in adams.data.spreadsheet declared as Row Modifier and Type Field Description protected Row
CellView. m_Owner
the owner.protected Row
DoubleCell. m_Owner
the row this cell belongs to.protected Row
FloatCell. m_Owner
the row this cell belongs to.Methods in adams.data.spreadsheet that return Row Modifier and Type Method Description Row
Row. getClone(SpreadSheet owner)
Returns a clone of itself.Row
Cell. getOwner()
Returns the row this cell belongs to.Row
CellView. getOwner()
Returns the row this cell belongs to.Row
DoubleCell. getOwner()
Returns the row this cell belongs to.Row
FloatCell. getOwner()
Returns the row this cell belongs to.Row
DefaultSpreadSheet. removeRow(int rowIndex)
Removes the specified row.Row
DefaultSpreadSheet. removeRow(String rowKey)
Removes the specified row.Row
SpreadSheet. removeRow(int rowIndex)
Removes the specified row.Row
SpreadSheet. removeRow(String rowKey)
Removes the specified row.Row
SpreadSheetView. removeRow(int rowIndex)
Removes the specified row.Row
SpreadSheetView. removeRow(String rowKey)
Removes the specified row.Methods in adams.data.spreadsheet with parameters of type Row Modifier and Type Method Description void
AbstractRow. assign(Row row)
Obtains copies of the cells from the other row, but not the owner.void
DataRowView. assign(Row row)
Obtains copies of the cells from the other row, but not the owner.void
DenseDataRow. assign(Row row)
Obtains copies of the cells from the other row, but not the owner.void
HeaderRow. assign(Row row)
Obtains copies of the cells from the other row, but not the owner.void
Row. assign(Row row)
Obtains copies of the cells from the other row, but not the owner.int
RowComparator. compare(Row o1, Row o2)
Compares its two arguments for order.void
DataRowView. mergeWith(Row other)
Merges its own data with the one provided by the specified row.void
DenseDataRow. mergeWith(Row other)
Merges its own data with the one provided by the specified row.void
HeaderRow. mergeWith(Row other)
Merges its own data with the one provided by the specified row.void
Row. mergeWith(Row other)
Merges its own data with the one provided by the specified row.void
SparseDataRow. mergeWith(Row other)
Merges its own data with the one provided by the specified row.Cell
DataRowView. newCell(Row owner)
Creates a new instance of a cell.Cell
DenseDataRow. newCell(Row owner)
Creates a new instance of a cell.Cell
DenseFloatDataRow. newCell(Row owner)
Creates a new instance of a cell.Cell
HeaderRow. newCell(Row owner)
Creates a new instance of a cell.Cell
Row. newCell(Row owner)
Creates a new instance of a cell.Cell
SparseDataRow. newCell(Row owner)
Creates a new instance of a cell.Cell
SparseFloatDataRow. newCell(Row owner)
Creates a new instance of a cell.void
Cell. setOwner(Row owner)
Sets the row this cell belongs to.void
CellView. setOwner(Row owner)
Sets the row this cell belongs to.void
DoubleCell. setOwner(Row owner)
Sets the row this cell belongs to.void
FloatCell. setOwner(Row owner)
Sets the row this cell belongs to.Constructors in adams.data.spreadsheet with parameters of type Row Constructor Description CellView(Row owner, Cell cell)
Initializes the wrapper.DoubleCell(Row owner)
Constructor.FloatCell(Row owner)
Constructor. -
Uses of Row in adams.data.spreadsheet.cellfinder
Fields in adams.data.spreadsheet.cellfinder declared as Row Modifier and Type Field Description protected Row
TypeRangeIterator. m_SheetRow
the row to process.Methods in adams.data.spreadsheet.cellfinder with parameters of type Row Modifier and Type Method Description protected void
AbstractRowCellFinder. check(Row row)
Checks whether the row can be processed.protected abstract Iterator<CellLocation>
AbstractRowCellFinder. doFindCells(Row row)
Performs the actual locating.protected Iterator<CellLocation>
CellRange. doFindCells(Row row)
Performs the actual locating.protected Iterator<CellLocation>
CellTypeRange. doFindCells(Row row)
Performs the actual locating.protected Iterator<CellLocation>
SingleCell. doFindCells(Row row)
Performs the actual locating.Iterator<CellLocation>
AbstractRowCellFinder. findCells(Row row)
Locates the cells in the row.Iterator<CellLocation>
RowCellFinder. findCells(Row row)
Locates the cells in the row.Constructors in adams.data.spreadsheet.cellfinder with parameters of type Row Constructor Description TypeRangeIterator(Row sheetRow, Cell.ContentType type, int[] cols)
Initializes the iterator. -
Uses of Row in adams.data.spreadsheet.colstatistic
Methods in adams.data.spreadsheet.colstatistic with parameters of type Row Modifier and Type Method Description protected abstract void
AbstractColumnStatistic. doVisit(Row row, int colIndex)
Gets called with every row in the spreadsheet for generating the stats.protected void
AbstractDoubleArrayColumnStatistic. doVisit(Row row, int colIndex)
Gets called with every row in the spreadsheet for generating the stats.protected void
Distinct. doVisit(Row row, int colIndex)
Gets called with every row in the spreadsheet for generating the stats.protected void
LabelCounts. doVisit(Row row, int colIndex)
Gets called with every row in the spreadsheet for generating the stats.protected void
Missing. doVisit(Row row, int colIndex)
Gets called with every row in the spreadsheet for generating the stats.protected void
MultiColumnStatistic. doVisit(Row row, int colIndex)
Gets called with every row in the spreadsheet for generating the stats.protected void
Unique. doVisit(Row row, int colIndex)
Gets called with every row in the spreadsheet for generating the stats. -
Uses of Row in adams.data.spreadsheet.rowstatistic
Methods in adams.data.spreadsheet.rowstatistic with parameters of type Row Modifier and Type Method Description protected void
AbstractDoubleArrayRowStatistic. doVisit(Row row, int colIndex)
Gets called with every cell in the row for generating the stats.protected abstract void
AbstractRowStatistic. doVisit(Row row, int colIndex)
Gets called with every cell in the row for generating the stats.protected void
Distinct. doVisit(Row row, int colIndex)
Gets called with every row in the spreadsheet for generating the stats.protected void
LabelCounts. doVisit(Row row, int colIndex)
Gets called with every row in the spreadsheet for generating the stats.protected void
Missing. doVisit(Row row, int colIndex)
Gets called with every cell in the row for generating the stats.protected void
MultiRowStatistic. doVisit(Row row, int rowIndex)
Gets called with every row in the spreadsheet for generating the stats.protected void
Unique. doVisit(Row row, int colIndex)
Gets called with every row in the spreadsheet for generating the stats. -
Uses of Row in adams.flow.transformer
Methods in adams.flow.transformer that return Row Modifier and Type Method Description protected Row
SpreadSheetDifference. difference(SpreadSheet output, Row row1, Row row2)
Computes the difference between the two rows: actual difference is computed for numeric cells.Methods in adams.flow.transformer with parameters of type Row Modifier and Type Method Description protected void
PDFMetaData. addCell(Row row, String header, String content)
Adds the cell content to the spreadsheet.protected void
PDFMetaData. addCell(Row row, String header, Calendar content)
Adds the cell content to the spreadsheet.protected Row
SpreadSheetDifference. difference(SpreadSheet output, Row row1, Row row2)
Computes the difference between the two rows: actual difference is computed for numeric cells.protected void
SpreadSheetDifference. generateOutputRow(SpreadSheet output, Row rowDiff)
Generates a row and appends it to the output.protected String
SpreadSheetSubsetByValue. getCellValue(Row row, int col)
Returns the cell value at the specified column. -
Uses of Row in adams.flow.transformer.multispreadsheetoperation
Methods in adams.flow.transformer.multispreadsheetoperation that return Row Modifier and Type Method Description protected abstract Row
AbstractIndentifiableRowOperation. performOperation(SpreadSheet output, Row row1, Row row2)
Performs the actual operation on the rows.protected Row
Difference. performOperation(SpreadSheet output, Row row1, Row row2)
Computes the difference between the two rows: actual difference is computed for numeric cells.protected Row
Sum. performOperation(SpreadSheet output, Row row1, Row row2)
Computes the difference between the two rows: actual difference is computed for numeric cells.Methods in adams.flow.transformer.multispreadsheetoperation with parameters of type Row Modifier and Type Method Description protected void
AbstractIndentifiableRowOperation. generateOutputRow(SpreadSheet output, Row rowDiff)
Generates a row and appends it to the output.protected abstract Row
AbstractIndentifiableRowOperation. performOperation(SpreadSheet output, Row row1, Row row2)
Performs the actual operation on the rows.protected Row
Difference. performOperation(SpreadSheet output, Row row1, Row row2)
Computes the difference between the two rows: actual difference is computed for numeric cells.protected Row
Sum. performOperation(SpreadSheet output, Row row1, Row row2)
Computes the difference between the two rows: actual difference is computed for numeric cells. -
Uses of Row in adams.flow.transformer.plotgenerator
Methods in adams.flow.transformer.plotgenerator with parameters of type Row Modifier and Type Method Description protected String
AbstractPlotGenerator. getActualPlotName(Row row, String defValue)
Returns the plot name to use.protected Object
AbstractPlotGenerator. getCellObject(Row row, int index, Object defaultValue)
Returns the cell value for the specified column index.protected String
AbstractPlotGenerator. getCellString(Row row, int index)
Returns the string value for the specified cell.protected Comparable
AbstractPlotGenerator. getCellValue(Row row, int index)
Returns the cell value for the specified column index.protected Comparable
AbstractPlotGenerator. getCellValue(Row row, int index, Comparable defaultValue)
Returns the cell value for the specified column index. -
Uses of Row in adams.gui.visualization.image.plugins
Fields in adams.gui.visualization.image.plugins with type parameters of type Row Modifier and Type Field Description protected List<Row>
AbstractSelectedImagesFeatureGenerator. m_Collected
the collected data.Methods in adams.gui.visualization.image.plugins that return Row Modifier and Type Method Description protected abstract Row[]
AbstractSelectedImagesFeatureGenerator. generateFeatures(BufferedImage image)
Generats the features from the image.protected Row[]
BoofCVFeatureGenerator. generateFeatures(BufferedImage image)
Filters the image.protected Row[]
BufferedImageFeatureGenerator. generateFeatures(BufferedImage image)
Filters the image. -
Uses of Row in adams.gui.visualization.spreadsheet
Methods in adams.gui.visualization.spreadsheet that return Row Modifier and Type Method Description Row
SpreadSheetRow. toRow()
Generates a spreadsheet row, if a spreadsheet header is available.Methods in adams.gui.visualization.spreadsheet with parameters of type Row Modifier and Type Method Description void
SpreadSheetRow. set(Row row)
Clears the container and adds the data from the Row (internal values).void
SpreadSheetRow. set(Row row, int index, int[] additional, Range range, HashSet<Integer> attTypes)
Clears the container and adds the data from the Row (internal values). -
Uses of Row in adams.ml.data
Classes in adams.ml.data that implement Row Modifier and Type Class Description class
InstancesHeaderRow
Header row for anInstances
object.class
InstanceView
Wrapper around anInstance
object.Methods in adams.ml.data that return Row Modifier and Type Method Description Row
DatasetView. removeRow(int rowIndex)
Removes the specified row.Row
DatasetView. removeRow(String rowKey)
Removes the specified row.Row
InstancesView. removeRow(int rowIndex)
Removes the specified row.Row
InstancesView. removeRow(String rowKey)
Removes the specified row.Methods in adams.ml.data with parameters of type Row Modifier and Type Method Description void
InstancesHeaderRow. assign(Row row)
Obtains copies of the cells from the other row, but not the owner.void
InstanceView. assign(Row row)
Obtains copies of the cells from the other row, but not the owner.void
InstancesHeaderRow. mergeWith(Row other)
Merges its own data with the one provided by the specified row.void
InstanceView. mergeWith(Row other)
Merges its own data with the one provided by the specified row.Cell
InstancesHeaderRow. newCell(Row owner)
Creates a new instance of a cell.Cell
InstanceView. newCell(Row owner)
Creates a new instance of a cell.void
DataCellView. setOwner(Row owner)
Sets the row this cell belongs to.static weka.core.Instance
WekaConverter. toInstance(weka.core.Instances data, Row row)
Turns an ADAMS dataset row into a Weka Instance. -
Uses of Row in adams.ml.model
Methods in adams.ml.model with parameters of type Row Modifier and Type Method Description void
IncrementalAlgorithm. updateModel(T model, Row row)
Updates the model with the given data. -
Uses of Row in adams.ml.model.classification
Methods in adams.ml.model.classification with parameters of type Row Modifier and Type Method Description String
ClassificationModel. classify(Row row)
Returns the label for the given row.Map<String,String>
MultiTargetClassificationModel. classify(Row row)
Returns the label for the given row.String
WekaClassificationModel. classify(Row row)
Returns the class label for the given row.double[]
ClassificationModel. distribution(Row row)
Returns the class distribution for the given row.Map<String,double[]>
MultiTargetClassificationModel. distribution(Row row)
Returns the class distribution for the given row.double[]
WekaClassificationModel. distribution(Row row)
Returns the class distribution for the given row. -
Uses of Row in adams.ml.model.clustering
Methods in adams.ml.model.clustering with parameters of type Row Modifier and Type Method Description int
ClusteringModel. cluster(Row row)
Returns the cluster index for the given row.int
WekaClusteringModel. cluster(Row row)
Returns the cluster for the given row.double[]
ClusteringModel. distribution(Row row)
Returns the cluster distribution for the given row.double[]
WekaClusteringModel. distribution(Row row)
Returns the cluster distribution for the given row. -
Uses of Row in adams.ml.model.regression
Methods in adams.ml.model.regression with parameters of type Row Modifier and Type Method Description Map<String,Double>
MultiTargetRegressionModel. classify(Row row)
Returns the regressions for the given row.double
RegressionModel. classify(Row row)
Returns the regression for the given row.double
WekaRegressionModel. classify(Row row)
Returns the regression for the given row. -
Uses of Row in adams.ml.preprocessing
Methods in adams.ml.preprocessing that return Row Modifier and Type Method Description protected abstract Row
AbstractColumnSubsetStreamFilter. doFilter(Row data)
Filters the dataset row coming through.protected abstract Row
AbstractStreamFilter. doFilter(Row data)
Filters the dataset row coming through.Row
AbstractColumnSubsetStreamFilter. filter(Row data)
Filters the dataset row coming through.Row
AbstractStreamFilter. filter(Row data)
Filters the dataset row coming through.Row
StreamFilter. filter(Row data)
Filters the dataset row coming through.Methods in adams.ml.preprocessing with parameters of type Row Modifier and Type Method Description protected void
AbstractFilter. appendData(Row input, Row data, gnu.trove.list.TIntList cols)
Appends the column values to the row.protected void
AbstractFilter. appendHeader(SpreadSheet input, Row header, gnu.trove.list.TIntList cols)
Appends the column names to the header.protected abstract Row
AbstractColumnSubsetStreamFilter. doFilter(Row data)
Filters the dataset row coming through.protected abstract Row
AbstractStreamFilter. doFilter(Row data)
Filters the dataset row coming through.protected abstract void
AbstractColumnSubsetStreamFilter. doInitFilter(Row data)
Filter-specific initialization.protected abstract void
AbstractStreamFilter. doInitFilter(Row data)
Filter-specific initialization.Row
AbstractColumnSubsetStreamFilter. filter(Row data)
Filters the dataset row coming through.Row
AbstractStreamFilter. filter(Row data)
Filters the dataset row coming through.Row
StreamFilter. filter(Row data)
Filters the dataset row coming through.protected void
AbstractColumnSubsetStreamFilter. initFilter(Row data)
Initializes the filter.protected void
AbstractStreamFilter. initFilter(Row data)
Initializes the filter.protected abstract Dataset
AbstractColumnSubsetStreamFilter. initOutputFormat(Row data)
Initializes the output format.protected abstract Dataset
AbstractStreamFilter. initOutputFormat(Row data)
Initializes the output format.protected void
AbstractColumnSubsetStreamFilter. postInitFilter(Row data)
After the filter has been initialized.protected void
AbstractStreamFilter. postInitFilter(Row data)
After the filter has been initialized.protected void
AbstractColumnSubsetStreamFilter. preInitFilter(Row data)
Before the actual filter initialization.protected void
AbstractStreamFilter. preInitFilter(Row data)
Before the actual filter initialization. -
Uses of Row in adams.ml.preprocessing.unsupervised
Methods in adams.ml.preprocessing.unsupervised that return Row Modifier and Type Method Description protected Row
MultiStream. doFilter(Row data)
Filters the dataset row coming through.protected Row
PassThrough. doFilter(Row data)
Filters the dataset row coming through.protected Row
SavitzkyGolay. doFilter(Row data)
Filters the dataset row coming through.Methods in adams.ml.preprocessing.unsupervised with parameters of type Row Modifier and Type Method Description protected Row
MultiStream. doFilter(Row data)
Filters the dataset row coming through.protected Row
PassThrough. doFilter(Row data)
Filters the dataset row coming through.protected Row
SavitzkyGolay. doFilter(Row data)
Filters the dataset row coming through.protected void
MultiStream. doInitFilter(Row data)
Filter-specific initialization.protected void
PassThrough. doInitFilter(Row data)
Filter-specific initialization.protected void
SavitzkyGolay. doInitFilter(Row data)
Filter-specific initialization.protected Dataset
MultiStream. initOutputFormat(Row data)
Initializes the output format.protected Dataset
PassThrough. initOutputFormat(Row data)
Initializes the output format.protected Dataset
SavitzkyGolay. initOutputFormat(Row data)
Initializes the output format.
-