Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ Or the development version:

`> pip install https://github.com/DHI/modelskill/archive/main.zip`

Interactive plots (`backend="plotly"`) require an extra dependency:

`> pip install "modelskill[plotly]"`


## Example notebooks

Expand Down Expand Up @@ -101,10 +105,22 @@ ms.plotting.spatial_overview([HKNA, EPL, c2], mr, figsize=(7,7))

### Timeseries plot

Timeseries plots can either be static and report-friendly ([matplotlib](https://matplotlib.org/)) or interactive with zoom functionality ([plotly](https://plotly.com/python/)).
Plots can either be static and report-friendly ([matplotlib](https://matplotlib.org/), the default) or interactive with zoom functionality ([plotly](https://plotly.com/python/)).

```python
cc["HKNA"].plot.timeseries(width=1000, backend="plotly")
cc["HKNA"].plot.timeseries(figsize=(10, 4), backend="plotly")
```

![timeseries](https://raw.githubusercontent.com/DHI/modelskill/main/images/plotly_timeseries.png)

Every plot takes a `backend` argument -- `scatter`, `hist`, `kde`, `qq`, `box`,
`residual_hist` and `taylor` on both `Comparer` and `ComparerCollection`,
`Comparer.plot.timeseries`, `ComparerCollection.plot.spatial_overview` and
`.temporal_coverage`, the `timeseries` and `hist` plots on observations and model results,
and the standalone functions in `ms.plotting`.

The same arguments (`title`, `figsize` in inches, `xlim`, `ylim`, ...) work with both
backends. The matplotlib backend returns a `matplotlib.axes.Axes` (or `Figure` for
`taylor`), the plotly backend a `plotly.graph_objects.Figure`. Extra `**kwargs` go to the
underlying matplotlib call, or to
[`Figure.update_layout`](https://plotly.com/python/reference/layout/) respectively.
27 changes: 27 additions & 0 deletions docs/user-guide/plotting.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Plotting

## Backends

Every plot can be rendered by either of two backends, selected with the `backend` argument:

* `"matplotlib"` (the default) - static, report-friendly figures, returns a `matplotlib.axes.Axes` (or a `Figure` for `taylor`)
* `"plotly"` - [interactive](https://plotly.com/python/) figures with zoom and hover, returns a `plotly.graph_objects.Figure`

The plotly backend requires an optional dependency:

```bash
pip install "modelskill[plotly]"
```

Both backends take the same arguments — `title`, `figsize` (in inches for both), `xlim`, `ylim` and so on. Extra `**kwargs` go to the underlying matplotlib call, or to plotly's [`Figure.update_layout`](https://plotly.com/python/reference/layout/) respectively, so a matplotlib-only argument such as `cmap` is rejected by the plotly backend. `ax` is matplotlib-only; the plotly backend always returns a new figure.

Both backends return the figure rather than showing it, so in a script you need `.show()` (or `fig.write_html(...)`).

## Plotting observations and model results

[](`~modelskill.PointObservation`)s and [](`~modelskill.PointModelResult`)s can be plotted using their `plot` accessor:
Expand All @@ -17,6 +34,10 @@ mr = ms.PointModelResult('../data/SW/ts_storm_4.dfs0', item=0) # TODO coords
o.plot.timeseries();
```

```{python}
o.plot.timeseries(backend="plotly")
```

```{python}
mr.plot.timeseries();
```
Expand Down Expand Up @@ -71,6 +92,12 @@ cmp.plot.timeseries();
cmp.plot.scatter();
```

The same plot with the interactive backend:

```{python}
cmp.plot.scatter(backend="plotly")
```


## Taylor diagrams

Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,12 @@ classifiers = [

[project.optional-dependencies]
networks = ["mikeio1d", "networkx"]
plotly = ["plotly >= 4.5"]

[dependency-groups]
dev = ["pytest", "plotly >= 4.5", "ruff==0.6.2", "netCDF4", "dask"]

docs = ["quartodoc==0.11.1", "nbformat", "nbconvert", "ipykernel", "griffe<2"]
docs = ["quartodoc==0.11.1", "nbformat", "nbconvert", "ipykernel", "griffe<2", "plotly >= 4.5"]

test = [
"pytest",
Expand All @@ -58,6 +59,7 @@ test = [
"mypy==1.19.1",
"types-PyYAML",
"geopandas",
"plotly >= 4.5",
]

notebooks = ["nbformat", "nbconvert", "jupyter", "plotly", "shapely", "seaborn"]
Expand Down
Loading
Loading