swat.cas.table.CASTable.plot

CASTable.plot

Make plots of the data in the CAS table

This method requires all of the data in the CAS table to be fetched to the client side. The data is then plotted using pandas.DataFrame.plot().

The plot attribute can be used as both a method and an object. When called as a method, the parameters are the same as pandas.DataFrame.plot(). When used as an attribute each of the plot types are available as methods. For example, tbl.plot(kind='bar') is equivalent to tbl.plot.bar().

Parameters:
*args : positional arguments

Positional arguments to pandas.DataFrame.plot().

**kwargs : keyword arguments

Keyword arguments to pandas.DataFrame.plot().

Returns:
matplotlib.AxesSubplot or :func:`numpy.array` of them