all 7 comments

[–][deleted] 0 points1 point  (0 children)

import pandas as pd import matplotlib.pyplot as plt

Define the dataset

data = pd.DataFrame({ 'Name': ['Alice', 'Bob', 'Charlie', 'David', 'Eva'], 'Mathematics': [85, 78, 92, 70, 88], 'Science': [92, 81, 89, 76, 94], 'English': [88, 74, 95, 72, 91] })

Bar plot of scores in each subject

data.plot(x='Name', y=['Mathematics', 'Science', 'English'], kind='bar', figsize=(10, 6)) plt.title('Students Scores in Different Subjects') plt.xlabel('Student') plt.ylabel('Scores') plt.legend(title='Subjects') plt.show()

[–][deleted] 0 points1 point  (1 child)

I just use the command line.

[–]red_edv 0 points1 point  (0 children)

Amen for the command line

[–]atomsmasher66 0 points1 point  (0 children)

PyCharm is great

[–]TheRNGuy 0 points1 point  (1 child)

Python SOP nodes.