increase axis ticks pyplot code example
Example: increase axis ticks pyplot
x = [0,5,9,10,16]
y = [0,1,2,3,5]
x_ticks = np.arange(0, 16, 5)
plt.xticks(x_ticks)
y_ticks = np.arange(0, 5, 2)
plt.yticks(y_ticks)
plt.plot(x, y)
x = [0,5,9,10,16]
y = [0,1,2,3,5]
x_ticks = np.arange(0, 16, 5)
plt.xticks(x_ticks)
y_ticks = np.arange(0, 5, 2)
plt.yticks(y_ticks)
plt.plot(x, y)