Quartiles, quantiles, and quintiles
Quantiles are a great way of summarizing numerical data since they can be used to measure center and spread, as well as to get a sense of where a data point stands in relation to the rest of the data set. For example, you might want to give a discount to the 10% most active users on a website.
In this exercise, you'll calculate quartiles, quintiles, and deciles, which split up a dataset into 4, 5, and 10 pieces, respectively.
Both pandas
as pd
and numpy
as np
are loaded and food_consumption
is available.
Este exercício faz parte do curso
Introduction to Statistics in Python
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Calculate the quartiles of co2_emission
print(____)