CData Python Connector for Azure Active Directory

Build 23.0.8839

Matplotlib から

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

PyPlot の使用

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

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

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

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