开始使用免费开始使用

Stacking states

In this exercise, you will explore and compare the prices of various food commodities across three Indian states: Jammu and Kashmir, Bihar, and Punjab. To facilitate this analysis, you will utilize grouped histograms, where the bars representing different commodities will be stacked on top of each other.

For your convenience, the DataFrames, and StatsPlots packages have already been imported. Additionally, the commodities DataFrame is readily accessible, containing the relevant data for your analysis.

本练习是课程的一部分

Introduction to Data Visualization with Julia

查看课程

练习说明

  • Generate a grouped histogram using the Retail Price column from the commodities DataFrame.
  • Define the groups using the State column, assigning the colors limegreen, fuchsia, and orange1 to represent each state, respectively.
  • Utilize the bar_position argument to stack the bars on top of one another.

交互式实操练习

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

# Create grouped histogram
____(
	____."____",
    # Define groups and colors
	____=____.____,
    color=[____],
    # Stack the bars
    bar_position=:____
)
title!("Commodity Prices in India")
xlabel!("Price (Rupees)")
ylabel!("Frequency")
编辑并运行代码