Combee is a flexible data analysis library written in pure Rust inspired by pandas (python).
Run in a Rust project directory:
bash
cargo add combee
1) Below an example of loading a CSV file, filtering the dataset, and applying a function to each row:
```rust use serde::{Serialize, Deserialize};
use combee;
struct Data { name: String, age: u32 }
struct Message { message: String }
let df = combee::readcsv::(String::from("tests/fixtures/basic.csv")).unwrap(); let dffiltered = df.filter(|row| row.age < 27); let dfmessage = df.apply(|row| Message { message: format!("Hello {} with {} years!", row.name, row.age)}); let messages = dfmessage.take(2); ```
Made with Love by Daniel Santana