python

Pandas

[pandas] 2. 2次元データ構造 Dataframeについて

ここでは、二次元の表形式データであるDataframeの作成方法について説明する。
matplotlib 3D

[matplotlib 3D] 44.正四面体(tetrahedron)

matplotlib mplot3dの3Dグラフで正四面体を表示する方法を解説する。
Pandas

[pandas] 1.1次元データ構造 Seriesについて

pandasの1次元データ構造のSeriesについて、Seriesの作成、文字列インデックスの設定や数字インデックスの設定について説明する。
matplotlib Animation

[matplotlib animation] 21. 3Dグラフで斜方投射 (Projectile motion)

matplotlib FuncAnimationによる斜方投射のアニメーション
python

[SciPy] 2. ガウス分布によるカーブフィッティング

SciPyのcurve_fitによりガウシアンフィッティングをデータに適用する方法について解説する。
matplotlib Animation

[matplotlib animation] 20. ベイズ更新(the bayes update)

matplotlib FuncAnimationによるベイズ更新のアニメーション
matplotlib Animation

[matplotlib animation] 19. 鉛直投げ上げ (vertical throw up)

matplotlib FuncAnimationによる鉛直投げ上げのアニメーション
NumPy

[NumPy] 10. グラフ上のランダムデータそれぞれの最近傍点を結ぶ

np.arrayのブロードキャストにより各点の2乗距離を求め、np.argsortを使って最近傍点を見出す方法について説明する。