2021-11

python code

整数のスライダーの使い方

スライダーなどのGUIの部品を通して、関数の引数をインタラクティブに変更できます。fromipywidgetsimportinteractdeffunc(x):returnxinteract(func,x=100);interact は、第...
python code

グラフ内にテキストを表示

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

グラフの色の設定

%matplotlibinlineimportmatplotlib.pyplotaspltfig,ax=plt.subplots()ax.plot([2,1,3],color='r')#グラフの線を赤ax.grid(color='red')...
python code

round関数と四捨五入について

round関数は小数を任意の桁数で丸める整数を任意の桁数で丸めるround()は一般的な四捨五入ではなく、偶数への丸めである。f=123.456print(round(f))#123print(round(f,1))#123.5print(...
python code

2軸グラフの作り方

%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')month=[4,5,6,7,8,9]sales_new=[11,17,12,24,...
python code

箱ひげ図の作り方

%matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')labels=['men','women']age_men=[10,17,21,22...
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+...