Terminal plotting library for using in Rust CLI applications. Should work well in any unicode terminal with monospaced font.
It is insired by TextPlots.jl which is inspired by Drawille.
Currently it features only drawing line charts on Braille canvas, but could be exterded to support other canvas and chart type just like UnicodePlots.jl or any other cool terminal plotting library.
Contributions are very much welcome!
```rust extern crate textplots;
use textplots::{Chart, Plot};
fn main() { println!("y = sin(x) / x"); Chart::default().lineplot(|x| x.sin() / x ).display(); } ```