v1.1.0
Highlights
This release ships with the option to plot with plotly instead of matplotlib, but plotly is only an optional dependency only required if this option is used:
- Set global settings
from model_diagnostics import set_config set_config(plot_backend="plotly")
- Context manager
from model_diagnostics import config_context from model_diagnostics.calibration import plot_bias with config_context(plot_backend="plotly"): plot_bias(...)
What's Changed
- DOC fix docstrings after sub-bullet points by @lorentzenchr in #135
- CI make coverage account for full test matrix by @lorentzenchr in #137
- ENH add inital plotly backend to plot_reliability_diagram by @lorentzenchr in #136
- ENH add plotly backend to plot_bias by @lorentzenchr in #139
- ENH add plotly backend to plot_murphy_diagram by @lorentzenchr in #140
- ENH add config and move plot_backend to config system by @lorentzenchr in #141
- REL increase to version 1.1.0 by @lorentzenchr in #142
Full Changelog: v1.0.5...v1.1.0