Get startedGet started for free

Visualizing durability differences

Following the analysis of toy durability, the research team is interested in you visualizing the distribution of durability scores for both Educational and Recreational toys. Such visualizations can offer intuitive insights into the data, potentially highlighting the range and variability of scores within each category. This step is essential for presenting findings to non-technical stakeholders and guiding further product development decisions.

The data is available in the toy_durability DataFrame, and seaborn and matplotlib.pyplot as sns and plt respectively are loaded.

This exercise is part of the course

Experimental Design in Python

View Course

Exercise instructions

  • Visualize the distribution of 'Durability_Score' for Educational and Recreational toys using a Kernel Density Estimate (KDE) plot, highlighting differences by using the 'Toy_Type' column to color the distributions differently.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Visualize the distribution of Durability_Score for each Toy_Type
sns.____(data=____, x="____", 
         hue="____", kind="____")
plt.title('Durability Score Distribution by Toy Type')
plt.xlabel('Durability Score')
plt.ylabel('Density')
plt.show()
Edit and Run Code