Python と R の違い (データ可視化・グラフ作成編)

Last update: 2017-10-10

このページでは、前編に引き続き、Ajay Ohri 氏のスライド、”Python for R Users” から、Python と R の違いについて、データ可視化とグラフの作成方法の差異を紹介します。

散布図

R Python
r_scatter py_scatter

箱ひげ図

R Python
r_boxplot py_boxplot

ヒストグラム

R Python

r_hist py_hist

折れ線グラフ

R Python

r_line py_line

円グラフ

R Python

r_pie py_pie

棒グラフ

R Python

r_bar py_bar

See also