开始使用免费开始使用

Potato prices

Histograms are an effective way to visualize distributions. In this exercise, you will create a histogram to display the historical prices of potatoes in various markets across India. You will experiment with different bin sizes to determine the most suitable one.

The DataFrames and Plots packages have already been imported for you, and the potato DataFrame is ready for use.

本练习是课程的一部分

Introduction to Data Visualization with Julia

查看课程

交互式实操练习

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

# Plot a histogram
____(
	potato[:, "____"],
    # Hide the label 
    ____=____,
    # Choose color
    ____=____
)
title!("Potato Prices in India")
xlabel!("Price (Rupees)")
ylabel!("Frequency")
编辑并运行代码