template<typename ... Ts>
void
remove_data_by_idx(Index2D<I> range);
|
It removes the data rows from index begin to index end.
DataFrame must be sorted by index or behavior is undefined.
This function first calls make_consistent() that may add nan values to data columns.
|
Ts: The list of types for all columns. A type should be specified only once.
range: The begin and end iterators for index specified with index values
|