matplot lib label x axis code example
Example 1: matplotlib label axis
import matplotlib.pyplot as plt
plt.ylabel('Y AXIS')
plt.xlabel('X AXIS')
Example 2: label axis matplotlib
ax2.set_xlabel('time (s)')
import matplotlib.pyplot as plt
plt.ylabel('Y AXIS')
plt.xlabel('X AXIS')
ax2.set_xlabel('time (s)')