Version 3.0.3
matplotlib
Fork me on GitHub

Table of Contents

Related Topics

Pyplot Formatstr

Use a format string to colorize a plot and set its markers.

import matplotlib.pyplot as plt
plt.plot([1,2,3,4], [1,4,9,16], 'ro')
plt.axis([0, 6, 0, 20])
plt.show()
../../_images/sphx_glr_pyplot_formatstr_001.png

References

The use of the following functions, methods, classes and modules is shown in this example:

Keywords: matplotlib code example, codex, python plot, pyplot Gallery generated by Sphinx-Gallery