# Data for Top Scorer Marks in Each Institution/Batches
top_scorer_marks = [710, 708, 715, 705, 700, 698]
# Data for Average Rank Improvement per Mock Test
rank_improvement = [20, 15, 18, 12, 10, 8]
# Create the figure
fig, axs = plt.subplots(3, 1, figsize=(10, 15))
# Chart 1: Average Marks of Top 500 Students
axs[0].bar(institutions, average_marks, color=['blue', 'green', 'orange', 'orange', 'purple', 'red']) axs[0].set_title("Average Marks of Top 500 Students") axs[0].set_ylabel("Marks (out of 720)") axs[0].set_ylim(0, 720)
# Chart 2: Top Scorer Marks in Each Institution/Batches
axs[1].plot(institutions, top_scorer_marks, color='magenta', marker='o', linestyle='--') axs[1].set_title("Top Scorer Marks in Each Institution/Batches") axs[1].set_ylabel("Marks (out of 720)") axs[1].set_ylim(690, 720)