CData Python Connector for Smartsheet

Build 24.0.8963

From Matplotlib

Matplotlib contains a number of tools that can graphically model Smartsheet data after being fed a data frame From Pandas.

Using PyPlot

Before any Matplotlib tool, such as pyplot, can be used, it must be imported:
from matplotlib import pyplot as plt

Once a Pandas data frame is obtained, it can be used to create a plot visualizing Smartsheet data. For example, the following plot generates and displays a bar graph relating Id and TotalRowCount values:

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

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