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 throughidx
ora
, 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
anddelta
of GENROUsGENROU_1
andGENROU_2
:system.TDS.plt.plot(system.GENROU, vars=['omega', 'delta'], idx=['GENROU_1', 'GENROU_2'])