polars 0.53.0

DataFrame library based on Apache Arrow
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg_attr(feature = "nightly", allow(clippy::result_large_err))] // remove once stable
#![cfg_attr(feature = "nightly", allow(clippy::manual_repeat_n))] // remove once stable
#![cfg_attr(feature = "nightly", allow(clippy::len_zero))] // remove once stable
mod core;
mod io;
mod joins;
#[cfg(feature = "lazy")]
mod lazy;
mod schema;
mod time;

mod arrow;
mod chunks;

pub static FOODS_CSV: &str = "../../examples/datasets/foods1.csv";