Get startedGet started for free

Price distributions

In this exercise, the focus is once again on examining the distribution of product prices across various Indian centers. To facilitate easy comparisons, you will utilize a violin plot to display the price distributions for multiple products.

The required packages, namely DataFrames and StatsPlots, have already been imported for your convenience. Additionally, the product DataFrame is readily accessible and can be utilized for this analysis.

This exercise is part of the course

Introduction to Data Visualization with Julia

View Course

Exercise instructions

  • Generate a violin plot to visualize the relationship between "Retail Price" and Commodity.
  • Hide the line within the violin plot.
  • Customize the color of the plot to royalblue1.

Hands-on interactive exercise

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

# Create violin plot
____(
	____.____,
    ____."____",
    # Hide line
    linewidth=____,
    # Set the color
    color=:____,
    label=false,
)
title!("Product Prices in India")
ylabel!("Price (Rupees)")
Edit and Run Code