เริ่มต้นใช้งานเริ่มต้นใช้งานได้ฟรี

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

แบบฝึกหัดนี้เป็นส่วนหนึ่งของหลักสูตร

Experimental Design in Python

ดูคอร์ส

แบบฝึกหัดเชิงโต้ตอบแบบลงมือทำ

ลองทำแบบฝึกหัดนี้โดยเติมโค้ดตัวอย่างนี้ให้สมบูรณ์

# Plot the distribution of the chickens' weight
sns.____(data=____, x='____', kind="____")
plt.show()
แก้ไขและรันโค้ด