https://github.com/Axect/Puruda
PUre RUst DAtaframe
https://github.com/Axect/Puruda
dataframe rust
Last synced: 24 days ago
JSON representation
PUre RUst DAtaframe
- Host: GitHub
- URL: https://github.com/Axect/Puruda
- Owner: Axect
- Created: 2020-04-18T15:58:41.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-05T20:00:55.000Z (over 4 years ago)
- Last Synced: 2024-11-15T15:22:55.518Z (7 months ago)
- Topics: dataframe, rust
- Language: Rust
- Homepage:
- Size: 18.6 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PURUDA
**PU**re **RU**st **DA**taframe
## Example
```rust
extern crate puruda;
use puruda::*;fn main() {
let a = vec![1, 2, 3];
let b = vec!["a", "b", "c"];let mut c2 = Col2::from_cols(a, b);
c2.c1().print();
c2.c2().print();let c = c2.c1_mut();
(*c) = vec![4, 5, 6];assert_eq!(c2.c1(), &vec![4, 5, 6]);
c2.write_csv("hello.csv", ',').expect("Can't write csv");
}
```## Congruous Data Format
* [x] CSV Trait
* [x] `write_csv`
* [x] `read_csv`
* [ ] HDF5
* [ ] JSON