subset_ method

DataFrame subset_(
  1. int startIndex,
  2. int endIndex
)

Get a new dataframe with a subset of data

Implementation

DataFrame subset_(int startIndex, int endIndex) {
  final _newMatrix = _matrix.data.sublist(startIndex, endIndex);
  return DataFrame._copyWithMatrix(this, _newMatrix);
}