Issue
How do i make the Graph in x and y axis display every 1 value like in x axis i want the graph to display 1 2 3 4 etc
Thanks
Solution
Fast and simple can be:
plt.xticks(np.arange(1,25)) # for x-axis
plt.yticks(np.arange(1,25)) # for y-axis
Answered By - Curious
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.