Alphabetical list Categories
mark Draw on the current graph with the current marker
Call signature:

mark(xx, yy)

Help text:

mark(xx, yy) draws marks at the given location in data space. See also marker and pmark, and xmark and ymark.

Example:

import qplot 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)))

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