Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
3d-plot.rs | D | 25-Apr-2025 | 1.9 KiB | 63 | 52 | |
3d-plot2.rs | D | 25-Apr-2025 | 1.7 KiB | 55 | 45 | |
README.md | D | 25-Apr-2025 | 1.4 KiB | 20 | 12 | |
animation.rs | D | 25-Apr-2025 | 1.9 KiB | 66 | 54 | |
area-chart.rs | D | 25-Apr-2025 | 1.6 KiB | 55 | 45 | |
blit-bitmap.rs | D | 25-Apr-2025 | 1.6 KiB | 46 | 35 | |
boxplot.rs | D | 25-Apr-2025 | 6.5 KiB | 230 | 207 | |
chart.rs | D | 25-Apr-2025 | 3.1 KiB | 95 | 69 | |
colormaps.rs | D | 25-Apr-2025 | 2.5 KiB | 70 | 57 | |
console.rs | D | 25-Apr-2025 | 5.4 KiB | 201 | 175 | |
customized_coord.rs | D | 25-Apr-2025 | 1.5 KiB | 55 | 43 | |
errorbar.rs | D | 25-Apr-2025 | 2.9 KiB | 99 | 81 | |
full_palette.rs | D | 25-Apr-2025 | 14.4 KiB | 549 | 538 | |
histogram.rs | D | 25-Apr-2025 | 1.3 KiB | 44 | 35 | |
mandelbrot.rs | D | 25-Apr-2025 | 2.2 KiB | 72 | 59 | |
matshow.rs | D | 25-Apr-2025 | 1.8 KiB | 63 | 52 | |
nested_coord.rs | D | 25-Apr-2025 | 1.4 KiB | 48 | 39 | |
normal-dist.rs | D | 25-Apr-2025 | 2.3 KiB | 67 | 56 | |
normal-dist2.rs | D | 25-Apr-2025 | 2.6 KiB | 84 | 66 | |
pie.rs | D | 25-Apr-2025 | 1 KiB | 26 | 21 | |
relative_size.rs | D | 25-Apr-2025 | 1.6 KiB | 58 | 45 | |
sierpinski.rs | D | 25-Apr-2025 | 1.3 KiB | 44 | 35 | |
slc-temp.rs | D | 25-Apr-2025 | 4.1 KiB | 175 | 162 | |
snowflake.rs | D | 25-Apr-2025 | 1.9 KiB | 58 | 49 | |
stock.rs | D | 25-Apr-2025 | 3.4 KiB | 80 | 71 | |
tick_control.rs | D | 25-Apr-2025 | 2.8 KiB | 90 | 75 | |
two-scales.rs | D | 25-Apr-2025 | 1.9 KiB | 61 | 50 |
README.md
1# plotters examples 2 3* The example projects have been moved to independent git repository under plotters-rs organization, please check the [Example Project](#example-project) section for the links. 4 5To 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. 6 7All the examples assumes the directory [plotters-doc-data](https://github.com/38/plotters-doc-data) exists, otherwise those example crashs. 8 9The 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. 10We also rely on the output of examples to detect potential layout changes. 11For 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.** 12 13The examples that have their own directories and `Cargo.toml` files work differently. They are run the same way you would a standalone project. 14 15## Example Projects 16 17- For WebAssembly sample project, check [plotters-wasm-demo](https://github.com/plotters-rs/plotters-wasm-demo) 18- For Frame Buffer, Realtime Readering example, check [plotters-minifb-demo](https://github.com/plotters-rs/plotters-minifb-demo) 19- For GTK integration, check [plotters-gtk-demo](https://github.com/plotters-rs/plotters-gtk-demo) 20