python code 整数のスライダーの使い方 スライダーなどのGUIの部品を通して、関数の引数をインタラクティブに変更できます。fromipywidgetsimportinteractdeffunc(x):returnxinteract(func,x=100);interact は、第... 2021.11.29 python code
python code グラフ内にテキストを表示 %matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')fig,ax=plt.subplots()ax.plot([1,3,2])ax.te... 2021.11.29 python code
python code グラフの色の設定 %matplotlibinlineimportmatplotlib.pyplotaspltfig,ax=plt.subplots()ax.plot([2,1,3],color='r')#グラフの線を赤ax.grid(color='red')... 2021.11.29 python code
python code round関数と四捨五入について round関数は小数を任意の桁数で丸める整数を任意の桁数で丸めるround()は一般的な四捨五入ではなく、偶数への丸めである。f=123.456print(round(f))#123print(round(f,1))#123.5print(... 2021.11.29 python code
python code 2軸グラフの作り方 %matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')month=[4,5,6,7,8,9]sales_new=[11,17,12,24,... 2021.11.29 python code
python code 箱ひげ図の作り方 %matplotlibinlineimportmatplotlib.pyplotaspltplt.style.use('seaborn-darkgrid')labels=['men','women']age_men=[10,17,21,22... 2021.11.16 python code
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