overlinemin
Specifies minimum vertical length of OVERLINEs
Call signature:
overlinemin(x=None)
Help text:
overlinemin(h) specifies the minimum vertical length of OVERLINEs, in points.
h = overlinemin() returns current settings.
Download pdf
Example:
import pyqplot as qp
import numpy as np
qp.figure('overlinemin', 3, 3)
xx = np.array([1, 2])
yy = np.array([3, 4])
dy = np.array([.5, .75])
qp.bars(xx, yy, .5)
qp.errorbar(xx, yy, dy)
qp.overline(xx, yy+dy, '*')
xx = xx + 2.5
qp.bars(xx, yy, .5)
qp.errorbar(xx, yy, dy)
qp.overlinemin(15)
qp.overline(xx, yy+dy, '*')
Download source.