开始使用免费开始使用

Instant and powdered coffee

In this exercise, you will analyze the prices of instant and powdered coffee in Indian markets. Grouped histograms are excellent tools for comparing different distributions side by side, mainly when simple statistical measures fall short of providing a comprehensive description of the data.

The DataFrames package has been imported for your convenience, and the coffee DataFrame is readily available for analysis.

本练习是课程的一部分

Introduction to Data Visualization with Julia

查看课程

练习说明

  • Import the StatsPlots package
  • Create a grouped histogram using the Retail Price column from the coffee DataFrame.
  • Group the histogram by the Variety column
  • Select sandybrown and brown for the colors in that specific order.

交互式实操练习

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

# import StatsPlots
____ ____

# Create grouped histogram
____(
	coffee."____",
    # Define the group
    ____=coffee.____,
    # Choose colors
    ____=[____ ____]
)
title!("Cofee Prices in India")
xlabel!("Price (Rupees)")
ylabel!("Frequency")
编辑并运行代码