multiIndexed method

DataFrame multiIndexed(
  1. Iterable<int> indices, {
  2. bool asView = true,
})

Returns a DataFrame composed of the rows specified through indices.

asView set to true leads to a view of the current data being returned, otherwise a copy will be returned.

Implementation

DataFrame multiIndexed(Iterable<int> indices, {bool asView = true}) =>
    _viewOrCopy(
        _trackedColumnNames.l, indices.map((e) => this[e]).toList(), asView);