erdoctor

python code

ヒストグラムの作り方

%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')age_men=[10,17,21,22,25,36]#男性の年齢のリストage_w...
python code

散布図の作り方

%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,ax=plt.subplots()ax.scatter([0,1,2],[2...
python code

円グラフの作り方

%matplotlibinlineimportmatplotlib.pyplotaspltfig,ax=plt.subplots()ax.pie([2,1,3],explode=[0,0.1,0],labels=['Item1','Item...
python code

棒グラフ

棒グラフの作成方法%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')#データw=0.4#widthx1=[0,1,2]x2=[w,1+...
python code

折れ線グラフのオプション

オプションを使って、線の種類や色などを変えることができる。%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,ax=plt.su...
python code

matplotlibの画像の保存

普通に画像をコピーできる。%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,ax=plt.subplots()ax.plot(...
python code

matplotlibの軸の設定

折れ線グラフの「X軸の項目名」を指定%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,ax=plt.subplots()x=a...
python code

matplotlibの軸ラベルの設定

%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,ax=plt.subplots()ax.plot()ax.set_xlabe...
python code

matplotlibのレジェンドの設定

凡例は、legendで描画しますが、2通りのやり方があります。方法1:各グラフの描画時に凡例のラベルを指定する方法方法2:凡例の描画時に、まとめてラベルを指定する方法%matplotlibinlineimportmatplotlib.pyp...
python code

matplotlibでタイトルの設定

set_titleでサブプロットのタイトルを設定できます。%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,axes=plt....