日記 11月29日に思う事 だいぶ時間が空いていしまった。医学部の講義の資料、銀行訪問、学会や葬式などが重なって時間が取れなかった。結局、作業効率が下がってしまうのは、時間を定期的にとれないようなイベントが起こってしまう時なんだな。このまま不動産で事業拡大をしていく方... 2021.11.29 日記
python code インタラクティブにグラフを作る %matplotlibinlineimportmatplotlib.pyplotaspltimportnumpyasnpfromipywidgetsimportinteract,FloatSlider@interact(x接点=(-np.p... 2021.11.29 python code
python code インタラクティブにwidgetを追加する fromipywidgetsimport(Checkbox,Dropdown,FloatSlider,IntSlider,Text,interact)cb=Checkbox(True,description='例1')dd=Dropdown... 2021.11.29 python code
python code グラフをインタラクティブに変更する %matplotlibinlineimportmatplotlib.pyplotaspltimportnumpyasnpfromipywidgetsimportinteract@interact(title='sinecurve')defs... 2021.11.29 python code
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