統計視覺化

Matplotlib 資料視覺化入門

Ariel Rokem

Data Scientist

為長條圖加入誤差棒

fig, ax = plt.subplots()

ax.bar("Rowing",
       mens_rowing["Height"].mean(),
       yerr=mens_rowing["Height"].std())

ax.bar("Gymnastics",
       mens_gymnastics["Height"].mean(),
       yerr=mens_gymnastics["Height"].std())

ax.set_ylabel("Height (cm)")

plt.show()
Matplotlib 資料視覺化入門

長條圖中的誤差棒

Matplotlib 資料視覺化入門

為折線圖加入誤差棒

fig, ax = plt.subplots()

ax.errorbar(seattle_weather["MONTH"],
            seattle_weather["MLY-TAVG-NORMAL"],
            yerr=seattle_weather["MLY-TAVG-STDDEV"])

ax.errorbar(austin_weather["MONTH"],
            austin_weather["MLY-TAVG-NORMAL"],
            yerr=austin_weather["MLY-TAVG-STDDEV"])

ax.set_ylabel("Temperature (Fahrenheit)")

plt.show()
Matplotlib 資料視覺化入門

折線圖中的誤差棒

Matplotlib 資料視覺化入門

加入盒狀圖

fig, ax = plt.subplots()

ax.boxplot([mens_rowing["Height"], mens_gymnastics["Height"]])
ax.set_xticklabels(["Rowing", "Gymnastics"]) ax.set_ylabel("Height (cm)") plt.show()
Matplotlib 資料視覺化入門

解讀盒狀圖

Matplotlib 資料視覺化入門

一起來練習吧!

Matplotlib 資料視覺化入門

Preparing Video For Download...