InterviewSolution
Saved Bookmarks
| 1. |
Mr. Sanjay wants to plot a bar graph for the given set of values of subject on x-axis and number of students who opted for that subject on y-axis. Complete the code to perform the following : (i) To plot the bar graph in statement(ii) To display the graph in statementimport matplotlib.pyplot as pltx=['Hindi', 'English', 'Science', 'SST']y=[10,20,30,40] ..................Statement 1 .................... Statement 2 |
|
Answer» (i) plt.bar(x,y) (ii) plt.show() |
|