I am plotting the graph in python. I want to roundoff the y-axis as the values are too larger
I tried this code
df = pd.read_csv("data.csv", delimiter=",")
plt.plot(df['No'], df['B'], marker='.', color = 'green')
#plt.plot(df['No'], df['B'], marker='.', label='bb')
#plt.show()
plt.xlabel('No')
plt.ylabel('B')
plt.xticks(np.arange(1, 10+1, 2))
plt.grid()
plt.show()
how can I round off the y-axis