Chirag
0
Q:

matplotlib axes labels

import matplotlib.pyplot as plt

plt.ylabel('Y AXIS')
plt.xlabel('X AXIS')
0
fig = plt.figure()
ax = fig.add_subplot(...)

ax.set_title('Title Here')

ax.set_xlabel('x label here')
ax.set_ylabel('y label here')
ax.set_zlabel('z label here')
0

New to Communities?

Join the community