skrf.plotting.add_markers_to_lines¶
- skrf.plotting.add_markers_to_lines(ax=None, marker_list=['o', 'D', 's', '+', 'x'], markevery=10)[source]¶
Add markers to existing lings on a plot.
Convenient if you have already have a plot made, but then need to add markers afterwards, so that it can be interpreted in black and white. The markevery argument makes the markers less frequent than the data, which is generally what you want.
- Parameters:
ax (matplotlib.Axes or None, optional) – axis which to add markers to. Default is current axe gca()
marker_list (list of string, optional) – list of marker characters. Default is [‘o’, ‘D’, ‘s’, ‘+’, ‘x’]. see matplotlib.plot help for possible marker characters
markevery (int, optional.) – markevery number of points with a marker. Default is 10.