Python เบื้องต้นสำหรับ Data Science
Hillary Green-Lerman
Lead Data Scientist, Looker



plt.hist(gravel.mass)
plt.show()

plt.hist(data, bins=nbins)
plt.hist(gravel.mass, bins=40)

plt.hist(data,
range=(xmin, xmax))
plt.hist(gravel.mass,
range=(50, 100))

แผนภูมิแท่งที่ยังไม่ได้นอร์มัลไลซ์
plt.hist(male_weight)
plt.hist(female_weight)

ผลรวมของพื้นที่แท่ง = 1
plt.hist(male_weight, density=True)
plt.hist(female_weight, density=True)

Python เบื้องต้นสำหรับ Data Science