Python library for creating static, animated, and interactive visualizations
Python library for creating static, animated, and interactive visualizations
python-matplotlib$ python -c "import matplotlib.pyplot as plt; plt.plot([1,2,3,4]); plt.savefig('plot.png')"$ python -c "import matplotlib.pyplot as plt; plt.scatter([1,2,3], [1,4,9]); plt.xlabel('X'); plt.ylabel('Y'); plt.show()"$ python -c "import matplotlib.pyplot as plt; plt.hist([1,1,2,2,2,3,3,3,3,4], bins=4); plt.savefig('histogram.png')"