How to Add Axis Labels to Plots in Pandas (With Examples) To add axis labels, we must use the xlabel and ylabel arguments in the plot () function: #plot sales by store, add axis labels df.plot(xlabel='Day', ylabel='Sales') Notice that the x-axis and y-axis now have the labels that we specified within the plot () function. Note that you don't have to use both the xlabel and ylabel arguments.