1
2
3
4
5
6
7
8
9
10
11
//! # Changelog v0.5
//!
//! * `DataFrame.column` returns `Result<_>` **breaking change**.
//! * Define idiomatic way to do inplace operations on a `DataFrame` with `apply`, `try_apply` and `ChunkSet`
//! * `ChunkSet` Trait.
//! * `Groupby` aggregations can be done on a selection of multiple columns.
//! * `Groupby` operation can be done on multiple keys.
//! * `Groupby` `first` operation.
//! * `Pivot` operation.
//! * Random access to `ChunkedArray` types via `.get` and `.get_unchecked`.
//!