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:

Examples

>>> import publiplots as pp
>>> fig, ax = pp.subplots()
>>> pp.barplot(data=df, x='category', y='value', ax=ax)
>>> pp.show()