ion
Enable interactive rendering
Call signature:
ion()
Help text:
Subsequently created figures will show on screen. This is the default.
See also ioff.
Example:

import qplot as qp

import numpy as np

qp.ion()

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

qp.rectangle(-1, -1, 2, 2)

qp.at(0, 0)

qp.text("This figure will show up on your screen")