Thursday, April 16, 2026
subjects = ['Math', 'Science', 'English', 'Social Studies']
scores_before = [70, 75, 65, 80]
scores_after = [85, 88, 80, 90]
x = np.arange(len(subjects))
width = 0.35
fig, ax = plt.subplots()
bars1 = ax.bar(x - width/2, scores_before, width, label='Before')
bars2 = ax.bar(x + width/2, scores_after, width, label='After')
ax.set_ylabel('Scores')
ax.set_title('Impact of Life Skills on Academic Performance')
ax.set_xticks(x)
ax.set_xticklabels(subjects)
ax.legend()
plt.show()
Subscribe to:
Post Comments (Atom)
subjects = ['Math', 'Science', 'English', 'Social Studies'] scores_before = [70, 75, 65, 80] scores_after = ...
-
The “5A”- Learning Process Introduction: The concept of using “5A” is to ignite every student and for that matter adult’s natural curios...
-
Analysis of Non Bio degradable Surgical Masks as a Solid Waste and Identifying the Remedial measures By S.Sandhiya – VIII Standard...
No comments:
Post a Comment