sabopy

matplotlib 3D

[matplotlib animation] 26. ピラミッド建設

matplotlib FuncAnimationによるピラミッドの建設
matplotlib 3D

[matplotlib 3D] 46.ボクセルピラミッド(Voxel Pyramid)

matplotlib mplot3dでvoxelによるピラミッド
matplotlib 3D

[matplotlib 3D] 45.ピラミッド(Pyramid)を描画する方法

Pythonのmatplotlibライブラリを使用して3D空間に四角錐(ピラミッド)を描画する方法を解説します。mplot3dモジュールの基本的な使い方から、頂点座標の設定、面の作成、色や透明度の調整まで、ステップバイステップで説明します。
Pandas

[pandas] 18. DataFrameの結合(merge)における内部結合と外部結合

pandasで複数のDataFrameを横方向に結合する方法として、.merge()がある。一般的には、2つのデータで共通する部分のみが結合されるが、結合方法を指定することで、非共通部分も結合できる。ここでは、その方法について説明する。またカラム名が同じときに違うカラム名にして結合する方法も紹介する。
English articles

[matplotlib animation] 3.Z-axis rotation animation of the sphere

python matplotlib animation of sphere rotating about the z axis
English articles

[matplotlib 3D] 14. Rotation animation of matplotlib 3D graph

Rotation animation of 3D graph,using matplotlib, mplot3d and FuncAnimation.
matplotlib Animation

[matplotlib animation] 25. サインポール(理容店を示す細長い円柱状の看板)

Matplotlibのアニメーション機能(FuncAnimation)を使用して、理容店の象徴であるサインポールの回転する縞模様を表現する方法を解説します。円柱状の看板に螺旋状に動く赤白青の縞模様を再現するPythonコードとその実装手順を紹介します。
Pandas

[pandas] 17. DataFrameの結合(merge)

pandasのDataFrameを横方向に結合する(merge())について説明する。