• Home
Name
Date
Size
#Lines
LOC

..--

3d-plot.rsD03-May-20241.3 KiB4839

README.mdD03-May-2024883 127

animation.rsD03-May-20241.8 KiB6453

area-chart.rsD03-May-20241.3 KiB5243

blit-bitmap.rsD03-May-20241 KiB3829

boxplot.rsD03-May-20246.2 KiB226204

chart.rsD03-May-20242.9 KiB9570

console.rsD03-May-20245.2 KiB198174

errorbar.rsD03-May-20242.6 KiB9579

histogram.rsD03-May-20241 KiB4033

mandelbrot.rsD03-May-20241.8 KiB6857

matshow.rsD03-May-20241.4 KiB5748

nested_coord.rsD03-May-20241.1 KiB4437

normal-dist.rsD03-May-20242 KiB6354

normal-dist2.rsD03-May-20242.2 KiB8064

relative_size.rsD03-May-20241.3 KiB5442

sierpinski.rsD03-May-2024974 3832

slc-temp.rsD03-May-20243.7 KiB170159

snowflake.rsD03-May-20241.6 KiB5547

stock.rsD03-May-20243 KiB7467

two-scales.rsD03-May-20241.6 KiB5748

README.md

1# plotters examples
2
3To run any example, from within the repo, run `cargo run --example <example_name>` where `<example name>` is the name of the file without the `.rs` extension.
4
5All the examples assumes the directory [plotters-doc-data](https://github.com/38/plotters-doc-data) exists, otherwise those example crashs.
6
7The output of these example files are used to generate the [plotters-doc-data](https://github.com/38/plotters-doc-data) repo that populates the sample images in the main README.
8We also relies on the output of examples to detect protential layout changes.
9For that reason, **they must be run with `cargo` from within the repo, or you must change the output filename in the example code to a directory that exists.**
10
11The examples that have their own directories and `Cargo.toml` files work differently. They are run the same way you would a standalone project.
12