Plotting the temperature difference
In this exercise, you'll continue to assess whether the dataset seems trustworthy by plotting the difference between the maximum and minimum temperatures.
What do you notice about the resulting histogram? Does it match your expectations, or do you see anything unusual?
แบบฝึกหัดนี้เป็นส่วนหนึ่งของหลักสูตร
Analyzing Police Activity with pandas
คำแนะนำการฝึกหัด
- Create a new column in the
weatherDataFrame namedTDIFFthat represents the difference between the maximum and minimum temperatures. - Print the summary statistics for
TDIFFusing the.describe()method. - Create a histogram with 20 bins to visualize
TDIFF. - Display the plot.
แบบฝึกหัดเชิงโต้ตอบแบบลงมือทำ
ลองทำแบบฝึกหัดนี้โดยเติมโค้ดตัวอย่างนี้ให้สมบูรณ์
# Create a 'TDIFF' column that represents temperature difference
# Describe the 'TDIFF' column
print(____)
# Create a histogram with 20 bins to visualize 'TDIFF'
# Display the plot