skrf.plotting.plot_polar¶
- skrf.plotting.plot_polar(theta, r, x_label=None, y_label=None, title=None, show_legend=True, axis_equal=False, ax=None, *args, **kwargs)[source]¶
Plot polar data on a polar plot and optionally label axes.
- Parameters:
theta (array-like) – angular data to plot
r (array-like) – radial 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.
ax (
matplotlib.axes.AxesSubplot
object or None.) – axes to draw on. Default is None (creates a new figure).*args (passed to pylab.plot) –
**kwargs (passed to pylab.plot) –
axis_equal (bool) –
See also
plot_rectangular
plots rectangular data
plot_complex_rectangular
plot complex data on complex plane
plot_polar
plot polar data
plot_complex_polar
plot complex data on polar plane
plot_smith
plot complex data on smith chart