swat.cas.table.CASTable.plot

CASTable.plot

Plot the data in the 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
*argspositional arguments

Positional arguments to pandas.DataFrame.plot().

**kwargskeyword arguments

Keyword arguments to pandas.DataFrame.plot().

Returns
matplotlib.AxesSubplot or numpy.array() of them