Python 的 Plotly 資料視覺化入門
Alex Scriven
Data Scientist
$$
常見的單變量圖:
直方圖特色:

科學家蒐集的企鵝資料集:

fig = px.histogram( data_frame=penguins,x="Body Mass (g)", nbins=10)fig.show()

用四分位數概括單一變數
$$

$$
fig = px.box(data_frame=penguins,
y="Flipper Length (mm)")
fig.show()

Python 的 Plotly 資料視覺化入門