TDSData.panoview#

TDSData.panoview(mdl, vars, *, ncols=3, idx=None, a=None, figsize=None, **kwargs)[source]#

Panoramic view of variables of a given model instance.

Select variables through vars. Select devices through idx or a, which has a higher priority.

This function also takes other arguments recognizable by self.plot.

Parameters:
mdlModelBase

Model instance

varlist of str

A list of variable names to display

ncolint

Number of columns

idxlist

A list of device idx-es for showing

alist of int

A list of device 0-based positions for showing

figsizetuple

Figure size for plotting

Examples

To plot omega and delta of GENROUs GENROU_1 and GENROU_2:

system.TDS.plt.plot(system.GENROU,
                    vars=['omega', 'delta'],
                    idx=['GENROU_1', 'GENROU_2'])