nibcq.PlotSeries
- class nibcq.PlotSeries
Bases:
NamedTupleGeneric X/Y series for plotting.
Used for Nyquist (R vs -X) and Bode (frequency vs value) outputs. Access .x and .y to get the values, or just plot it as it is.
Example
>>> series = PlotSeries(x=[1, 2, 3], y=[4, 5, 6]) >>> series.x [1, 2, 3] >>> series.y [4, 5, 6]