Plotting¶
- pbeis.nyquist_plot(data, ax=None, marker='o', linestyle='None', **kwargs)¶
Generates a Nyquist plot from data. Calls matplotlib.pyplot.plot with keyword arguments ‘kwargs’. For a list of ‘kwargs’ see the matplotlib plot documentation
Parameters¶
- datalist or array-like
The data to be plotted.
- axmatplotlib Axis, optional
The axis on which to put the plot. If None, a new figure and axis is created.
- markerstr, optional
The marker to use for the plot. Default is ‘o’
- linestylestr, optional
The linestyle to use for the plot. Default is ‘None’
- kwargs
Keyword arguments, passed to plt.scatter.