textplots 0.1.0

Terminal plotting library.
docs.rs failed to build textplots-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: textplots-0.8.6

textplots Crates.io Build Status

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!

extern crate textplots;

use textplots::{Chart, Plot};

fn main() {
    println!("y = sin(x) / x");
    Chart::default().lineplot(|x| x.sin() / x ).display();
}