Searched refs:Plotters (Results 1 – 16 of 16) sorted by relevance
/external/rust/crates/plotters-svg/ |
D | README.md | 1 # plotters-svg - The SVG backend for Plotters 5 - For high-level intro of Plotters, see: [Plotters on crates.io](https://crates.io/crates/plotters) 6 - Check the main repo at [Plotters repo](https://github.com/38/plotters.git) 8 - You can also visit Plotters [Homepage](https://plotters-rs.github.io)
|
D | METADATA | 2 description: "Plotters SVG backend"
|
D | Cargo.toml.orig | 7 description = "Plotters SVG backend"
|
D | Cargo.toml | 18 description = "Plotters SVG backend"
|
/external/rust/crates/plotters-backend/ |
D | README.md | 1 # plotters-backend - The base crate for implementing a backend for Plotters 5 - For high-level intro of Plotters, see: [Plotters on crates.io](https://crates.io/crates/plotters) 6 - Check the main repo at [Plotters repo](https://github.com/38/plotters.git) 8 - You can also visit Plotters [Homepage](https://plotters-rs.github.io)
|
D | METADATA | 2 description: "Plotters Backend API"
|
D | Cargo.toml.orig | 7 description = "Plotters Backend API"
|
D | Cargo.toml | 18 description = "Plotters Backend API"
|
/external/rust/crates/plotters/ |
D | CHANGELOG.md | 3 ## Plotters 0.3.0 (2020-09-03) 4 This is the next major release of Plotters, see [release notes](./RELEASE-NOTES.md) for more detial… 35 ## Plotters 0.2.15 (2020-05-26) 41 ## Plotters 0.2.14 (2020-05-05) 46 ## Plotters 0.2.13 (2020-05-04) 57 ## Plotters 0.2.12 (2019-12-06) 73 ## Plotters 0.2.11 (2019-10-27) 87 ## Plotters 0.2.10 (2019-10-23) 97 ## Plotters 0.2.9 (2019-10-21) 111 ## Plotters 0.2.8 (2019-10-12) [all …]
|
D | RELEASE-NOTES.md | 1 # Plotters Release Notes 5 ## Plotters v0.3 7 Plotters v0.3 is shipped with multiple major improvements. 13 Previously, Plotters implements all supported backend in the core crate. As the project is becoming… 36 use plotter_bitmap::BitMapBackend; // <= This extra import is used to plug the backend to Plotters 46 Plotters 0.3 has introduced concept of tier 1 backends, which is the most supported. 73 Plotters 0.3 ships with tons of improvement made in the coordinate abstraction and support much mor…
|
D | README.md | 1 # Plotters - A Rust drawing library focus on data plotting for both WASM and native applications … 19 Plotters is drawing library designed for rendering figures, plots, and charts, in pure rust. Plotte… 22 - A new Plotters Developer's Guide is working in progress. The preview version is available at [her… 23 - To try Plotters with interactive Jupyter notebook, or view [here](https://plotters-rs.github.io/p… 147 To use Plotters, you can simply add Plotters into your `Cargo.toml` 192 Plotters now supports integrate with `evcxr` and is able to interactively drawing plots in Jupyter … 193 The feature `evcxr` should be enabled when including Plotters to Jupyter Notebook. 235 Thanks to the evcxr, now we have an interactive tutorial for Plotters! 273 Plotters currently supports backend that uses the HTML5 canvas. To use the WASM support, you can si… 276 There's a small demo for Plotters + WASM under `examples/wasm-demo` directory of this repo. [all …]
|
D | CONTRIBUTING.md | 1 Thanks for contributing to `Plotters`! 3 Here's the useful information about contributing to Plotters. 7 The `Plotters` project is under MIT license. 11 # Contributing to Plotters codebase 13 You are warmly welcomed to contribute code and make Plotters better. Here's a few things that may b… 17 *Help wanted:* You may realize that `Plotters` doesn't have a high testing coverage, but we are try… 110 Currently we should make sure Plotters is compatible with rustc 1.36.0.
|
/external/rust/crates/plotters/plotters-doc-data/ |
D | README.md | 3 This is the repository for the additional documentation data used by Plotters.
|
D | evcxr-jupyter-integration.ipynb | 7 "# Plotters Tutorial with Jupyter" 14 …"This is a interactive tutorial for [`Plotters`](https://github.com/38/plotters) drawing library. … 56 "In order to use `Plotters` in `jupyter-evcxr`, you need both Jupyter and evcxr installed.\n", 59 "To use Plotters with `jupyter-evcxr`, you need to import it using the following code:" 86 "### Plotters evcxr integration overview" 151 "Hello World from Plotters!\n", 168 …" root.draw(&Text::new(\"Hello World from Plotters!\", (15, 15), (\"Arial\", 20).into_font()))?… 184 …"One of the very important features is, `Plotters` allows drawing multiple charts in a single figu… 4924 …"`Plotters` is designed for drawing charts, plots, etc. This example demonstrate how to use `Plott… 4937 "Hello Plotters Chart Context!\n", [all …]
|
/external/rust/crates/plotters/.github/ISSUE_TEMPLATE/ |
D | bug_report.md | 18 Please give us what version you are using. If you are pulling `Plotters` directly from git repo, pl…
|
/external/rust/crates/criterion/src/ |
D | lib.rs | 125 PlottingBackend::Plotters 317 Plotters, enumerator 323 PlottingBackend::Plotters => Box::new(PlottersBackend::default()), in create_plotter() 928 Some("plotters") => self = self.plotting_backend(PlottingBackend::Plotters), in configure_from_args()
|