Uses of Interface
adams.data.spreadsheet.DataRow
-
-
Uses of DataRow in adams.data.binning
Methods in adams.data.binning that return types with arguments of type DataRow Modifier and Type Method Description static List<Binnable<DataRow>>
BinnableDataset. toBinnableUsingClass(SpreadSheet data, int index)
Turns Rows into a list of binnables using the class value.static List<Binnable<DataRow>>
BinnableDataset. toBinnableUsingIndex(SpreadSheet data)
Turns Rows into a list of binnables using the data row index.Methods in adams.data.binning with parameters of type DataRow Modifier and Type Method Description double
BinnableDataset.ClassValueBinValueExtractor. extractBinValue(DataRow object)
Extracts the numeric value to use for binning from the object.Method parameters in adams.data.binning with type arguments of type DataRow Modifier and Type Method Description double
BinnableDataset.GroupedClassValueBinValueExtractor. extractBinValue(BinnableGroup<DataRow> object)
Extracts the numeric value to use for binning from the object.String
BinnableDataset.StringAttributeGroupExtractor. extractGroup(Binnable<DataRow> item)
Extracts the group from the binnable object.static Dataset
BinnableDataset. toDataset(List<Binnable<DataRow>> list)
Turns a binnable list back into Rows.static SpreadSheet
BinnableDataset. toSpreadSheet(List<Binnable<DataRow>> list)
Turns a binnable list back into Rows. -
Uses of DataRow in adams.data.conversion
Fields in adams.data.conversion declared as DataRow Modifier and Type Field Description protected DataRow
AbstractMatrixToSpreadSheet. m_DataRowType
the data row type to use.protected DataRow
ConvertSpreadSheetRows. m_DataRowType
the data row type to use.protected DataRow
TimeseriesToSpreadSheet. m_DataRowType
the data row type to use.protected DataRow
WekaInstancesToSpreadSheet. m_DataRowType
the data row type to use.Methods in adams.data.conversion that return DataRow Modifier and Type Method Description DataRow
AbstractMatrixToSpreadSheet. getDataRowType()
Returns the type of data row to use.DataRow
ConvertSpreadSheetRows. getDataRowType()
Returns the type of data row to use.DataRow
TimeseriesToSpreadSheet. getDataRowType()
Returns the type of data row to use.DataRow
WekaInstancesToSpreadSheet. getDataRowType()
Returns the type of data row to use.Methods in adams.data.conversion with parameters of type DataRow Modifier and Type Method Description void
AbstractMatrixToSpreadSheet. setDataRowType(DataRow value)
Sets the type of data row to use.void
ConvertSpreadSheetRows. setDataRowType(DataRow value)
Sets the type of data row to use.void
TimeseriesToSpreadSheet. setDataRowType(DataRow value)
Sets the type of data row to use.void
WekaInstancesToSpreadSheet. setDataRowType(DataRow value)
Sets the type of data row to use. -
Uses of DataRow in adams.data.featureconverter
Fields in adams.data.featureconverter declared as DataRow Modifier and Type Field Description protected DataRow
SpreadSheet. m_DataRowType
the data row type to use.Methods in adams.data.featureconverter that return DataRow Modifier and Type Method Description DataRow
SpreadSheet. getDataRowType()
Returns the type of data row to use.protected DataRow
SpreadSheet. getDefaultDataRowType()
Returns the default row type.Methods in adams.data.featureconverter with parameters of type DataRow Modifier and Type Method Description void
SpreadSheet. setDataRowType(DataRow value)
Sets the type of data row to use. -
Uses of DataRow in adams.data.io.input
Fields in adams.data.io.input declared as DataRow Modifier and Type Field Description protected DataRow
AbstractSpreadSheetReader. m_DataRowType
the data row type to use.Methods in adams.data.io.input that return DataRow Modifier and Type Method Description DataRow
AbstractSpreadSheetReader. getDataRowType()
Returns the type of data row to use.DataRow
SpreadSheetReader. getDataRowType()
Returns the type of data row to use.protected DataRow
AbstractSpreadSheetReader. getDefaultDataRowType()
Returns the default row type.Methods in adams.data.io.input with parameters of type DataRow Modifier and Type Method Description void
AbstractSpreadSheetReader. setDataRowType(DataRow value)
Sets the type of data row to use.void
SpreadSheetReader. setDataRowType(DataRow value)
Sets the type of data row to use. -
Uses of DataRow in adams.data.spreadsheet
Classes in adams.data.spreadsheet that implement DataRow Modifier and Type Class Description 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
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 DataRow Modifier and Type Field Description protected DataRow
DataRowView. m_Row
the wrapped row.Fields in adams.data.spreadsheet with type parameters of type DataRow Modifier and Type Field Description protected HashMap<String,DataRow>
DefaultSpreadSheet. m_Rows
the rows of the spreadsheet.Methods in adams.data.spreadsheet that return DataRow Modifier and Type Method Description DataRow
DefaultSpreadSheet. addRow()
Appends a row to the spreadsheet.DataRow
DefaultSpreadSheet. addRow(String rowKey)
Adds a row with the given key to the list and returns the created object.DataRow
SpreadSheet. addRow()
Appends a row to the spreadsheet.DataRow
SpreadSheet. addRow(String rowKey)
Adds a row with the given key to the list and returns the created object.DataRow
SpreadSheetView. addRow()
Appends a row to the spreadsheet.DataRow
SpreadSheetView. addRow(String rowKey)
Adds a row with the given key to the list and returns the created object.DataRow
DataRow. getClone(SpreadSheet owner)
Returns a clone of itself.DataRow
DataRowView. getClone(SpreadSheet owner)
Returns a clone of itself.DataRow
DenseDataRow. getClone(SpreadSheet owner)
Creates a copy of itself.DataRow
SparseDataRow. getClone(SpreadSheet owner)
Returns a clone of itself.DataRow
DataRowView. getDataRow()
Returns the underlying data row.DataRow
DataRowTypeHandler. getDataRowType()
Returns the type of data row to use.DataRow
DefaultSpreadSheet. getRow(int rowIndex)
Returns the row at the specified index.DataRow
DefaultSpreadSheet. getRow(String rowKey)
Returns the row associated with the given row key, null if not found.DataRow
SpreadSheet. getRow(int rowIndex)
Returns the row at the specified index.DataRow
SpreadSheet. getRow(String rowKey)
Returns the row associated with the given row key, null if not found.DataRow
SpreadSheetView. getRow(int rowIndex)
Returns the row at the specified index.DataRow
SpreadSheetView. getRow(String rowKey)
Returns the row associated with the given row key, null if not found.DataRow
DefaultSpreadSheet. insertRow(int index)
Inserts a row at the specified location.DataRow
SpreadSheet. insertRow(int index)
Inserts a row at the specified location.DataRow
SpreadSheetView. insertRow(int index)
Inserts a row at the specified location.protected DataRow
DefaultSpreadSheet. newRow()
Creates a new row instance.Methods in adams.data.spreadsheet that return types with arguments of type DataRow Modifier and Type Method Description Collection<DataRow>
DefaultSpreadSheet. rows()
Returns all rows.Collection<DataRow>
SpreadSheet. rows()
Returns all rows.Collection<DataRow>
SpreadSheetView. rows()
Returns all rows.Methods in adams.data.spreadsheet with parameters of type DataRow Modifier and Type Method Description void
DataRowTypeHandler. setDataRowType(DataRow value)
Sets the type of data row to use.protected DataRowView
SpreadSheetView. wrap(DataRow row)
Wraps the data row in a view container.Constructors in adams.data.spreadsheet with parameters of type DataRow Constructor Description DataRowView(SpreadSheet owner, DataRow row, int[] columns)
Initializes the view. -
Uses of DataRow in adams.flow.source
Fields in adams.flow.source declared as DataRow Modifier and Type Field Description protected DataRow
AbstractSpreadSheetDbReader. m_DataRowType
the data row type to use.protected DataRow
NewSpreadSheet. m_DataRowType
the data row type to use.Methods in adams.flow.source that return DataRow Modifier and Type Method Description DataRow
AbstractSpreadSheetDbReader. getDataRowType()
Returns the type of data row to use.DataRow
NewSpreadSheet. getDataRowType()
Returns the type of data row to use.Methods in adams.flow.source with parameters of type DataRow Modifier and Type Method Description void
AbstractSpreadSheetDbReader. setDataRowType(DataRow value)
Sets the type of data row to use.void
NewSpreadSheet. setDataRowType(DataRow value)
Sets the type of data row to use. -
Uses of DataRow in adams.flow.transformer
Fields in adams.flow.transformer with type parameters of type DataRow Modifier and Type Field Description protected Iterator<DataRow>
SpreadSheetRowBuffer. m_Iterator
the iterator for broadcasting Row objects.Methods in adams.flow.transformer with parameters of type DataRow Modifier and Type Method Description protected SpreadSheet
SpreadSheetMethodMerge. spreadsheetForSingleDatarow(DataRow row)
Creates a spreadsheet, containing a copy of the single datarow provided. -
Uses of DataRow in adams.flow.transformer.spreadsheetmethodmerge
Methods in adams.flow.transformer.spreadsheetmethodmerge with parameters of type DataRow Modifier and Type Method Description protected Object
AbstractMerge. getValue(DataRow toGetFrom, int columnIndex)
Gets the value of the specified column from the given row.protected void
AbstractMerge. setValue(DataRow toSet, int columnIndex, Object value)
Sets the value of the given column in the given row to the given value (handles object conversion). -
Uses of DataRow in adams.gui.tools.spreadsheetprocessor.sources
Methods in adams.gui.tools.spreadsheetprocessor.sources that return DataRow Modifier and Type Method Description DataRow
DatabaseSource. getCurrentDataRow()
Returns the current data row.Methods in adams.gui.tools.spreadsheetprocessor.sources with parameters of type DataRow Modifier and Type Method Description void
DatabaseSource. setCurrentDataRow(DataRow value)
Sets the current data row. -
Uses of DataRow in adams.ml.data
Classes in adams.ml.data that implement DataRow Modifier and Type Class Description class
InstanceView
Wrapper around anInstance
object.Methods in adams.ml.data that return DataRow Modifier and Type Method Description DataRow
DatasetView. addRow()
Appends a row to the spreadsheet.DataRow
DatasetView. addRow(String rowKey)
Adds a row with the given key to the list and returns the created object.DataRow
InstancesView. addRow()
Appends a row to the spreadsheet.DataRow
InstancesView. addRow(String rowKey)
Adds a row with the given key to the list and returns the created object.DataRow
InstanceView. getClone(SpreadSheet owner)
Returns a clone of itself.DataRow
DatasetView. getRow(int rowIndex)
Returns the row at the specified index.DataRow
DatasetView. getRow(String rowKey)
Returns the row associated with the given row key, null if not found.DataRow
InstancesView. getRow(int rowIndex)
Returns the row at the specified index.DataRow
InstancesView. getRow(String rowKey)
Returns the row associated with the given row key, null if not found.DataRow
DatasetView. insertRow(int index)
Inserts a row at the specified location.DataRow
InstancesView. insertRow(int index)
Inserts a row at the specified location.Methods in adams.ml.data that return types with arguments of type DataRow Modifier and Type Method Description Collection<DataRow>
DatasetView. rows()
Returns all rows.Collection<DataRow>
InstancesView. rows()
Returns all rows.Methods in adams.ml.data with parameters of type DataRow Modifier and Type Method Description protected DataRowView
DatasetView. wrap(DataRow row)
Wraps the data row in a view container. -
Uses of DataRow in adams.ml.evaluation
Fields in adams.ml.evaluation with type parameters of type DataRow Modifier and Type Field Description protected List<FoldPair<Binnable<DataRow>>>
DefaultCrossValidationFoldGenerator. m_FoldPairs
the temporary pairs.
-