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 ystepparameters are used to label the axes starting at the left hand side andbottom of the plot respectively. For tighter control over labelling usexticks, yticks to specify the tick positions and xticklabels,yticklabels to specify the associated labels.xstep=xstep - x axis stepystep=ystep - y axis stepxlabel=xlabel - label for the x-axisylabel=ylabel - label for the y-axisxticks=xticks - values for x ticksxticklabels=xticklabels - labels for x tick marksyticks=yticks - values for y ticksyticklabels=yticklabels - labels for y tick markstitle=None - set titleUse axes() to reset all the axes plotting attributes to the default.
- Returns:
None