ComeçarComece de graça

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.

Este exercício faz parte do curso

Introduction to Data Visualization with Julia

Ver curso

Instruções do exercício

  • 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.

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Create violin plot
____(
	____.____,
    ____."____",
    # Hide line
    linewidth=____,
    # Set the color
    color=:____,
    label=false,
)
title!("Product Prices in India")
ylabel!("Price (Rupees)")
Editar e executar o código