axes

cfplot.axes(xticks=None, xticklabels=None, yticks=None, yticklabels=None, xstep=None, ystep=None, xlabel=None, ylabel=None, title=None)[source]
axes is a function to set axes plotting parameters. The xstep and ystep
parameters are used to label the axes starting at the left hand side and
bottom of the plot respectively. For tighter control over labelling use
xticks, yticks to specify the tick positions and xticklabels,
yticklabels to specify the associated labels.
xstep=xstep - x axis step
ystep=ystep - y axis step
xlabel=xlabel - label for the x-axis
ylabel=ylabel - label for the y-axis
xticks=xticks - values for x ticks
xticklabels=xticklabels - labels for x tick marks
yticks=yticks - values for y ticks
yticklabels=yticklabels - labels for y tick marks
title=None - set title

Use axes() to reset all the axes plotting attributes to the default.
Returns:

None