datascience.tables.Table.plot

Table.plot(column_for_xticks=None, select=None, overlay=True, **vargs)[source]

Plot line charts for the table.

Each plot is labeled using the values in column_for_xticks and one plot is produced for every other column (or for the columns designated by select).

Every selected column except for column_for_xticks must be numerical.

Args:
column_for_xticks (str/array): A column containing x-axis labels
Kwargs:
overlay (bool): create a chart with one color per data column;
if False, each will be displayed separately.
vargs: Additional arguments that get passed into plt.plot.
See http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.plot for additional arguments that can be passed into vargs.