IniziaInizia gratis

Coloring student scores bar graph

The school board was well-pleased with your previous plot, but they are wondering if there is a way for you to visually identify good and bad performers.

This would be a great opportunity to utilize color, specifically a color scale. You think a scale from red (worst marks) to green (good marks) would be great.

Part of your previous code to create the student scores bar chart has been provided.

The student_scores DataFrame is also available. You can print it out and inspect it in the console.

Questo esercizio fa parte del corso

Introduction to Data Visualization with Plotly in Python

Visualizza il corso

Istruzioni dell'esercizio

  • Create a color scale list from red (255, 0, 0) to green (3, 252, 40).
  • Set the color argument to the appropriate numerical column.
  • Use my_scale as the color scale for the plot.

Esercizio pratico interattivo

Prova a risolvere questo esercizio completando il codice di esempio.

# Create your own continuous color scale
my_scale = ["rgb(____)", "rgb(____)"]

# Create the bar plot
fig = px.bar(data_frame=student_scores, 
             x="student_name", y="score", title="Student Scores by Student",
             # Set the color variable and scale
             color="____",
             color_continuous_scale=____
             )

# Show the plot
fig.show()
Modifica ed esegui il codice