Skip to content

v1.1.0

Compare
Choose a tag to compare
@lorentzenchr lorentzenchr released this 29 Feb 17:53
· 38 commits to main since this release
615b131

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

Full Changelog: v1.0.5...v1.1.0