python code ヒストグラムの作り方 %matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')age_men=[10,17,21,22,25,36]#男性の年齢のリストage_w... 2021.11.16 python code
python code 散布図の作り方 %matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,ax=plt.subplots()ax.scatter([0,1,2],[2... 2021.11.16 python code
python code 円グラフの作り方 %matplotlibinlineimportmatplotlib.pyplotaspltfig,ax=plt.subplots()ax.pie([2,1,3],explode=[0,0.1,0],labels=['Item1','Item... 2021.11.16 python code
python code 棒グラフ 棒グラフの作成方法%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')#データw=0.4#widthx1=[0,1,2]x2=[w,1+... 2021.11.16 python code
python code 折れ線グラフのオプション オプションを使って、線の種類や色などを変えることができる。%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,ax=plt.su... 2021.11.16 python code
python code matplotlibの画像の保存 普通に画像をコピーできる。%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,ax=plt.subplots()ax.plot(... 2021.11.15 python code
python code matplotlibの軸の設定 折れ線グラフの「X軸の項目名」を指定%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,ax=plt.subplots()x=a... 2021.11.15 python code
python code matplotlibの軸ラベルの設定 %matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,ax=plt.subplots()ax.plot()ax.set_xlabe... 2021.11.15 python code
python code matplotlibのレジェンドの設定 凡例は、legendで描画しますが、2通りのやり方があります。方法1:各グラフの描画時に凡例のラベルを指定する方法方法2:凡例の描画時に、まとめてラベルを指定する方法%matplotlibinlineimportmatplotlib.pyp... 2021.11.15 python code
python code matplotlibでタイトルの設定 set_titleでサブプロットのタイトルを設定できます。%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,axes=plt.... 2021.11.15 python code