import mikeio
da = mikeio.read("../data/tide1.dfs1")["Level"]
da.plot()
Plot a DataArray with a Grid1D geometry.
| Name | Description |
|---|---|
| hist | Plot DataArray as histogram (using ax.hist). |
| imshow | Plot as 2d. |
| line | Plot as spatial lines. |
| pcolormesh | Plot multiple lines as 2d color plot. |
| timeseries | Plot as timeseries. |
Plot DataArray as histogram (using ax.hist).
| Name | Type | Description | Default |
|---|---|---|---|
| bins | (int or sequence or str) | If bins is an integer, it defines the number of equal-width bins in the range. If bins is a sequence, it defines the bin edges, including the left edge of the first bin and the right edge of the last bin. by default: rcParams[“hist.bins”] (default: 10) | None |
| ax | Axes | None | Adding to existing axis, instead of creating new fig | None |
| figsize | tuple[float, float] | None | specify size of figure | None |
| title | str | None | axes title | None |
| **kwargs | Any | additional arguments passed to the plotting function | {} |
matplotlib.pyplot.hist
| Name | Type | Description |
|---|---|---|
| <matplotlib.axes> |
Plot as 2d.
Plot as spatial lines.
Plot multiple lines as 2d color plot.
Plot as timeseries.