Version 2.2.2
matplotlib

Related Topics

This Page

Stem PlotΒΆ

Example stem plot.

../../_images/sphx_glr_stem_plot_001.png
import matplotlib.pyplot as plt
import numpy as np

x = np.linspace(0.1, 2 * np.pi, 10)
markerline, stemlines, baseline = plt.stem(x, np.cos(x), '-.')
plt.setp(baseline, color='r', linewidth=2)

plt.show()

Gallery generated by Sphinx-Gallery