matplotlib 3D

matplotlib

[matplotlib animation] 57. FuncAnimationとArtistAnimationの違い

matplotlibでは、アニメーションを表示する関数としてFuncAnimationとArtistAnimationがある。ここでは、同じアニメーションをFuncAnimationとArtistAnimationそれぞれで表示し、FuncAnimationとArtistAnimationの違いについて検討した。
matplotlib 3D

[matplotlib 3D] 54. 3D円グラフ

3D円グラフは使うべきではない図だが、matplotlib mplot3dにより3D円グラフを表示する方法について解説する。
ipywidgets

[ipywidgets] 7. RadioButtonsでデータを取得する方向を選択して、IntSliderで3Dグラフの任意の位置のデータをラインで表示

jupyter notebookの対話的にパラメータを調整できる機能(ipywidgets RadioButtons, IntSlider)でデータを取得する方向を選択し、3Dグラフ中の任意の位置のデータを線で表示する方法について説明する。
matplotlib 3D

[NumPy] 20.配列のスライスをボクセルグラフで可視化

いろいろなスライス方法をmatplotlib mplot3dのvoxelグラフで可視化した例について説明する。
matplotlib 3D

[matplotlib 3D] 53. 3Dグラフ上で注釈に画像を用いる方法

matplotlib mplot3dによる3Dグラフ上で画像による注釈を使用する方法について解説する。
matplotlib 3D

[matplotlib 3D] 52. 3Dグラフでマーカーとして画像を使用する方法

matplotlib mplot3dによる3Dグラフ上でマーカーとして画像を表示する方法について解説する。
matplotlib 3D

[matplotlib 3D] 51. 3Dグラフ上に画像を表示

matplotlib mplot3dによる3Dグラフ上に画像を表示する。
matplotlib 3D

[matplotlib 3D] 50. 3Dグラフにおけるアスペクト比の設定

matplotlib mplot3dで作成する3Dグラフでアスペクト比を揃えるために、ax.set_aspect('equal')とすると、NotImplementedErrorが出るようになった(matplotlib 3.1.0から)。ax.set_aspect('equal')を使わずにアスペクト比を揃える方法について検討した。