开始使用免费开始使用

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.

本练习是课程的一部分

Introduction to Data Visualization with Julia

查看课程

练习说明

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

交互式实操练习

通过完成这段示例代码来试试这个练习。

# Create violin plot
____(
	____.____,
    ____."____",
    # Hide line
    linewidth=____,
    # Set the color
    color=:____,
    label=false,
)
title!("Product Prices in India")
ylabel!("Price (Rupees)")
编辑并运行代码