Showing content from http://matplotlib.org/api/../mpl_examples/statistics/errorbar_demo.py below:
""" ============================= Demo of the errorbar function ============================= This exhibits the most basic use of the error bar method. In this case, constant values are provided for the error in both the x- and y-directions. """ import numpy as np import matplotlib.pyplot as plt # example data x = np.arange(0.1, 4, 0.5) y = np.exp(-x) fig, ax = plt.subplots() ax.errorbar(x, y, xerr=0.2, yerr=0.4) plt.show()
RetroSearch is an open source project built by @garambo
| Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4