日記

11月29日に思う事

だいぶ時間が空いていしまった。医学部の講義の資料、銀行訪問、学会や葬式などが重なって時間が取れなかった。結局、作業効率が下がってしまうのは、時間を定期的にとれないようなイベントが起こってしまう時なんだな。このまま不動産で事業拡大をしていく方...
python code

インタラクティブにグラフを作る

%matplotlibinlineimportmatplotlib.pyplotaspltimportnumpyasnpfromipywidgetsimportinteract,FloatSlider@interact(x接点=(-np.p...
python code

インタラクティブにwidgetを追加する

fromipywidgetsimport(Checkbox,Dropdown,FloatSlider,IntSlider,Text,interact)cb=Checkbox(True,description='例1')dd=Dropdown...
python code

グラフをインタラクティブに変更する

%matplotlibinlineimportmatplotlib.pyplotaspltimportnumpyasnpfromipywidgetsimportinteract@interact(title='sinecurve')defs...
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...