ComenzarEmpieza gratis

Styling scientific research

Now that you have mastered customizing your plots, it is time to let your creative energy flow!

In this exercise, you are continuing your work with the Antarctic research team to assist them in exploring and understanding the penguin data they have collected.

They have asked you to help them understand how the flipper length differs between species. Time is short, so you think a quick plotly.express visualization would do. However, they also want some specific customizations for the axes' titles.

You have available a penguins DataFrame.

Este ejercicio forma parte del curso

Introduction to Data Visualization with Plotly in Python

Ver curso

Instrucciones del ejercicio

  • Create a plotly bar chart from the penguins DataFrame with the title "Flipper Length (mm) by Species", the x-axis as "spec", the y-axis as "av_flip_length".
  • Use the .update_layout() method to change the xaxis and yaxis text to "Species" and "Average Flipper Length (mm)" respectively.

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Create the plot
fig = px.bar(penguins, x="____", y="____", title="____", color="spec")

# Change the axis titles
fig.update_layout(
    xaxis=dict(title=dict(text="____")),
    yaxis=dict(title=dict(text="____"))
)

# Show the plot
fig.show()
Editar y ejecutar código