Pythonで学ぶPlotlyによるデータ可視化入門
Alex Scriven
Data Scientist
・単変量プロットは1つの変数のみを表示
$$
代表的な単変量プロット:
ヒストグラムの特徴:

研究者が収集したペンギンのデータセット:

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によるデータ可視化入門