skrf.plotting.plot_rectangular¶
- skrf.plotting.plot_rectangular(x, y, x_label=None, y_label=None, title=None, show_legend=True, axis='tight', ax=None, *args, **kwargs)[source]¶
Plot rectangular data and optionally label axes.
- Parameters:
x (array-like, of complex data) – data to plot
y (array-like, of complex data) – data to plot
x_label (string or None, optional.) – x-axis label. Default is None.
y_label (string or None, optional.) – y-axis label. Default is None.
title (string or None, optional.) – plot title. Default is None.
show_legend (Boolean, optional.) – controls the drawing of the legend. Default is True.
axis (str, optional) – whether or not to autoscale the axis. Default is ‘tight’
ax (
matplotlib.axes.AxesSubplot
object or None, optional.) – axes to draw on. Default is None (creates a new figure)*args (passed to pylab.plot) –
**kwargs (passed to pylab.plot) –