[package]
edition = "2021"
rust-version = "1.70"
name = "plotters-statistical"
version = "0.1.0"
build = false
exclude = [
"target-images/*",
"*.svg",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Statistical chart primitives (box, violin, ROC, PR, regularization-path, residual) as native plotters series"
homepage = "https://github.com/mi7plus/plotters-statistical"
readme = "README.md"
keywords = [
"plotters",
"statistics",
"boxplot",
"roc",
"visualization",
]
categories = [
"visualization",
"science",
]
license = "MIT"
repository = "https://github.com/mi7plus/plotters-statistical"
[lib]
name = "plotters_statistical"
path = "src/lib.rs"
[[example]]
name = "box_plot"
path = "examples/box_plot.rs"
[[example]]
name = "calibration_curve"
path = "examples/calibration_curve.rs"
[[example]]
name = "correlation_heatmap"
path = "examples/correlation_heatmap.rs"
[[example]]
name = "dashboard"
path = "examples/dashboard.rs"
[[example]]
name = "ecdf"
path = "examples/ecdf.rs"
[[example]]
name = "gain_chart"
path = "examples/gain_chart.rs"
[[example]]
name = "heatmap"
path = "examples/heatmap.rs"
[[example]]
name = "missingness_heatmap"
path = "examples/missingness_heatmap.rs"
[[example]]
name = "pair_plot"
path = "examples/pair_plot.rs"
[[example]]
name = "precision_recall_curve"
path = "examples/precision_recall_curve.rs"
[[example]]
name = "qq_plot"
path = "examples/qq_plot.rs"
[[example]]
name = "regularization_path"
path = "examples/regularization_path.rs"
[[example]]
name = "residual_plot"
path = "examples/residual_plot.rs"
[[example]]
name = "roc_curve"
path = "examples/roc_curve.rs"
[[example]]
name = "violin_plot"
path = "examples/violin_plot.rs"
[[test]]
name = "rendering"
path = "tests/rendering.rs"
[[test]]
name = "rendering_v2"
path = "tests/rendering_v2.rs"
[[test]]
name = "stats"
path = "tests/stats.rs"
[[test]]
name = "stats_extra"
path = "tests/stats_extra.rs"
[[bench]]
name = "stats"
path = "benches/stats.rs"
harness = false
[dependencies.plotters]
version = "=0.3.7"
[dependencies.plotters-backend]
version = "=0.3.7"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.criterion]
version = "0.5"
[profile.bench]
debug = 2