mark
Draw on the current graph with the current marker
Call signature:
Help text:
mark(xx, yy) draws marks at the given location in data space. See also marker and pmark.
Example:
import pyqplot as qp
import numpy as np
qp.figure('mark', 3, 3)
qp.marker('o', fill='solid')
qp.mark(np.arange(1,6), np.cos(np.arange(1,6)))