CommencerCommencer gratuitement

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.

Cet exercice fait partie du cours

Introduction to Data Visualization with Julia

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Plot a histogram
____(
	potato[:, "____"],
    # Hide the label 
    ____=____,
    # Choose color
    ____=____
)
title!("Potato Prices in India")
xlabel!("Price (Rupees)")
ylabel!("Frequency")
Modifier et exécuter le code