Interface RowMajorDataFrame<R,C,V>
-
- All Superinterfaces:
DataFrame<R,C,V>
,MutableDataFrame<R,C,V>
- All Known Implementing Classes:
AbstractRowMajorDataFrame
,AccessorRowMajorDataFrame
,HashMapRowMajorDataFrame
public interface RowMajorDataFrame<R,C,V> extends MutableDataFrame<R,C,V>
Created by luc on 09/03/16.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
RowMajorDataFrame.Column<R,V>
static interface
RowMajorDataFrame.Query<R,C,V>
static interface
RowMajorDataFrame.QueryBuilder<R,C,V>
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addAfterRow(R insertionPoint, R row)
void
addBeforeRow(R insertionPoint, R row)
void
addRow(int i, R row)
void
addRow(R row)
RowMajorDataFrame.QueryBuilder<R,C,V>
getQueryBuilder()
void
remove(R row)
void
replaceRow(R oldRow, R newRow)
java.util.List<R>
retrieve(RowMajorDataFrame.Query<R,C,V> query)
-
Methods inherited from interface com.macrofocus.molap.dataframe.DataFrame
addDataFrameListener, addWeakDataFrameListener, aggregate, aggregate, append, appendAndReindex, benchmark, columns, filter, getCentroid, getColumn, getColumnAddress, getColumnClass, getColumnCount, getColumnIndex, getColumnKey, getColumnName, getConstant, getCount, getCountDistinct, getCountDistinctWithNull, getDataFrameAggregation, getDistributiveStatistics, getFirst, getFirstQuartile, getMax, getMean, getMedian, getMin, getRandom, getRow, getRowAddress, getRowClass, getRowCount, getRowIndex, getRowKey, getStatistics, getStdDev, getSum, getThirdQuartile, getUnivariateStatistics, getValueAt, getVariance, getVarianceByPopulation, getWeightedMean, getWeightedSum, join, orderRows, print, print, printSchema, reindexColumns, reindexRows, reindexRows, reindexRows, remapColumns, removeColumns, removeDataFrameListener, removeDataFrameListeners, removeDuplicates, rows
-
Methods inherited from interface com.macrofocus.molap.dataframe.MutableDataFrame
reindexRows, reindexRows, setValueAt
-
-