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 ejercicio forma parte del curso
Introduction to Data Visualization with Julia
Instrucciones del ejercicio
- Generate a violin plot to visualize the relationship between
"Retail Price"andCommodity. - Hide the line within the violin plot.
- Customize the color of the plot to
royalblue1.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Create violin plot
____(
____.____,
____."____",
# Hide line
linewidth=____,
# Set the color
color=:____,
label=false,
)
title!("Product Prices in India")
ylabel!("Price (Rupees)")