Plotly.rs
Plotly for Rust
A plotting library for Rust powered by [Plotly.js](https://plot.ly/javascript/).
## Usage
Add this to your `Cargo.toml`:
```toml
[dependencies]
plotly = "0.6.0"
```
For changes since the last version please consult the [change log](https://github.com/igiagkiozis/plotly/blob/master/CHANGELOG.md).
## Crate Feature Flags
The following feature flags are available:
* `kaleido`
* Optional, compatible with Rust stable.
* Adds plot save functionality to the following formats: png, jpeg, webp, svg, pdf and eps.
* Requires some additional configuration, see [plotly_kaleido](https://github.com/igiagkiozis/plotly/tree/master/plotly_kaleido).
* `plotly_ndarray`
* Optional, compatible with Rust stable.
* Adds support for creating plots directly using [ndarray](https://github.com/rust-ndarray/ndarray) types.
Saving to png, jpeg, webp, svg, pdf and eps formats can be made available by enabling the `kaleido` feature:
```toml
[dependencies]
plotly = { version = "0.6.0", features = ["kaleido"] }
```
For further details please see [plotly_kaleido](https://github.com/igiagkiozis/plotly/tree/master/plotly_kaleido).
# Contributing
Please consult the [contributing guide](https://github.com/igiagkiozis/plotly/blob/master/CONTRIBUTING.md).
# License
Plotly.rs is distributed under the terms of the MIT license.
See [LICENSE-MIT](https://github.com/igiagkiozis/plotly/blob/master/LICENSE-MIT), and [COPYRIGHT](https://github.com/igiagkiozis/plotly/blob/master/COPYRIGHT) for details.