publiplots.show¶
- publiplots.show(*args, **kwargs)[source]¶
Display figures.
Thin wrapper around
matplotlib.pyplot.show(). Behaviour depends on the active matplotlib backend: interactive backends block until the window closes; inline / Agg backends return immediately.- Parameters:
*args (Any) – Forwarded to
matplotlib.pyplot.show(). The most common kwarg isblock(Trueby default in interactive mode).**kwargs (Any) – Forwarded to
matplotlib.pyplot.show(). The most common kwarg isblock(Trueby default in interactive mode).
Examples
>>> import publiplots as pp >>> fig, ax = pp.subplots() >>> pp.barplot(data=df, x='category', y='value', ax=ax) >>> pp.show()