No Axis ArrowsΒΆ

If you do not like the axis arrows, it is easy to turn them off. Axis labels default to math mode, so you must use commands like \sf{} to obtain non-italic text.

import clearplot.params
import clearplot.plot_functions as pf
import numpy as np

clearplot.params.axis_arrow_bool = False

x = np.arange(0,10,0.01)
y = np.sqrt(x)

pf.plot('no_axis_arrows.png', x, y, \
    x_label = ['\sf{Volume\;Change}', '\%'], \
    y_label = ['\psi', 'GPa']);
../../_images/no_axis_arrows.png