CData Python Connector for e-Sales Manager Remix

Build 23.0.8839

Matplotlib から

Matplotlib には、データフレームPandas から をフィード後に、e-Sales Manager Remix データをグラフィカルにモデル化することができるツールが多数含まれています。

PyPlot の使用

pyplot などのMatplotlib ツールを使用するには、事前にインポートが必要です。
from matplotlib import pyplot as plt

Pandas データフレームを取得すると、それを使ってe-Sales Manager Remix データを可視化するプロットを作成することができます。例えば、次のプロットはName とAnnualRevenue の値に関連する棒グラフを生成して表示します。

df.plot(kind="bar", x="Name", y=["AnnualRevenue"])
plt.show()

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 23.0.8839