nibcq.PlotSeries ================ .. py:class:: nibcq.PlotSeries Bases: :py:obj:`NamedTuple` Generic 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. .. attribute:: x The x-coordinates of the data points. :type: List[float] .. attribute:: y The y-coordinates of the data points. :type: List[float] .. rubric:: Example >>> series = PlotSeries(x=[1, 2, 3], y=[4, 5, 6]) >>> series.x [1, 2, 3] >>> series.y [4, 5, 6]