matplotlib[NumPy] 12. ヒストグラムからデータを再構築 np.random.normalで作成した正規分布のデータのヒストグラムを作成して、そのヒストグラムから再度データを作成する方法について説明する。 2021.01.21matplotlibNumPypython
matplotlib[SciPy] 8. np.polyfit, curve_fit, lmfitによる線形近似の実行速度比較 np.polyfit, scipy.optimizeのcurve_fit, lmfitによる線形近似の実行速度の比較をmatplotlibのエラーバー付き棒グラフで表示する。 2020.10.16matplotlibNumPypythonSciPy
jupyter notebook[matplotlib] 91. マウスオーバーイベントで九九表(Multiplication tables) matplotlibのaxes_enter_event、axes_leave_eventを使ってaxesの背景色を変えて、マウスオーバーすると答えが出る九九表を作成する。 2020.10.02jupyter notebookmatplotlibNumPypython
matplotlib[matplotlib animation] 81.バウンドするボール matplotlibのFuncAnimationで自由落下と反発係数を考慮したバウンドのアニメーションを表示する。 2020.06.07matplotlibmatplotlib AnimationNumPypython
ipywidgets[ipywidgets] 24. Dropdownでデータを選択してそのヒストグラムを表示(matplotlib & seaborn) jupyter notebook, labで対話的な操作ができる機能(ipywidgets)のドロップダウンでデータを選択してそのヒストグラムを表示する方法について説明する。 2020.04.18ipywidgetsmatplotlibNumPypythonseaborn
NumPy[NumPy] 21. np.linspace()の使い方 NumPyのlinspace()は、startからstopの間を指定の個数で等間隔に区切った配列を生成する関数である。 2019.09.10NumPypython