Student scores bar graph
The school board has asked you to come and look at some test scores. They want an easy way to visualize the score of different students within a small class. This seems like a simple use case to practice your bar chart skills!
In this exercise, you will help the school board team by creating a bar chart of school test score values.
A DataFrame student_scores
has been provided. In this and all future exercises where it is needed, plotly.express
has already been loaded as px
.
This exercise is part of the course
Introduction to Data Visualization with Plotly in Python
Exercise instructions
- Examine the head of the provided
student_scores
DataFrame that has been printed for you to see what it contains. - Create a simple bar plot, setting the y-axis to be the score and the x-axis to be the student name.
- Add a title to the plot: call it
'Student Scores by Student'
.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Create the bar plot
fig = px.bar(data_frame=____,
____=____,
y=____,
____=____)
# Show the plot
fig.show()