dropSeries abstract method

DataFrame dropSeries({
  1. Iterable<int> indices,
  2. Iterable<String> names,
})

Returns a new DataFrame without specified series

If indices are specified, names parameter will be ignored.

Implementation

DataFrame dropSeries({
  Iterable<int> indices,
  Iterable<String> names,
});