Alphabetical list Categories
title Render a title on the current QPlot
Call signature:

title(ttl)

Help text:

title(text) renders the given text centered along the top of the current QPlot figure.
For more control over placement, use text and friends.

Example:

import qplot as qp

import numpy as np

qp.figure('title', 3, 3)

xx = np.linspace(0, 2*np.pi, 50)

qp.plot(xx, np.sin(xx))

qp.title('Sine wave')

QPlot Documentation — (C) Daniel Wagenaar, 2014–2023