ruviz 0.3.6

High-performance 2D plotting library for Rust
Documentation
use ruviz::plots::histogram::HistogramConfig;
use ruviz::prelude::*;

fn main() -> ruviz::core::Result<()> {
    std::fs::create_dir_all("examples/output").ok();

    // Generate sample data - normal distribution-like
    let data = vec![
        1.2, 1.5, 1.8, 2.1, 2.3, 2.7, 2.9, 3.1, 3.4, 3.6, 3.8, 4.0, 4.2, 4.5, 4.7, 4.9, 5.1, 5.3,
        5.6, 5.8, 6.0, 6.2, 6.5, 6.7, 6.9, 7.1, 7.4, 7.6, 7.8, 8.0, 8.2, 8.5, 8.7, 8.9, 9.1, 9.4,
        9.6, 9.8, 10.0, 10.2, 10.5, 10.7, 10.9, 11.1, 11.4, 11.6, 11.8, 12.0,
    ];

    Plot::new()
        .title("Professional Histogram Example")
        .xlabel("Value Bins")
        .ylabel("Frequency")
        .size_px(800, 600)
        .theme(Theme::publication())
        .histogram(&data, Some(HistogramConfig::new()))
        .save("examples/output/histogram_example.png")?;

    println!("Professional histogram saved as examples/output/histogram_example.png");
    Ok(())
}