Visual normality in an agricultural experiment
You have been contracted by an agricultural firm conducting an experiment on 50 chickens, divided into four groups, each fed a different diet. Weight measurements were taken every second day for 20 days.
You'll analyze chicken_data to assess normality, which will determine the suitability of parametric statistical tests, beginning with a visual examination of the data distribution. The necessary packages for analysis have been imported for you:
import seaborn as sns
import pandas as pd
from statsmodels.graphics.gofplots import qqplot
Den här övningen är en del av kursen
Experimental Design in Python
Interaktiv övning med praktiskt arbete
Testa den här övningen genom att slutföra den här exempelkoden.
# Plot the distribution of the chickens' weight
sns.____(data=____, x='____', kind="____")
plt.show()