Computer Science, asked by melvinlty8351, 9 months ago

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 1
(ii) To display the graph in statement 2
import matplotlib.pyplot as plt x=['Hindi', 'English', 'Science', 'SST'] y=[10,20,30,40]
___________________________Statement 1
___________________________Statement 2

Answers

Answered by renusahu19799
7

Answer:

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 1. (ii) To display the graph in statement 2.

Similar questions