36159c6aece4ec07aad8750f0a0b1f8465c32f78,examples/lines_bars_and_markers/errorbar_limits_simple.py,,,#,14
Before Change
y = np.sin(np.arange(10.0) / 20.0 * np.pi) + 1
plt.errorbar(x, y, yerr=0.1, uplims=True)
y = np.sin(np.arange(10.0) / 20.0 * np.pi) + 2
upperlimits = np.array([1, 0] * 5)
lowerlimits = np.array([0, 1] * 5)
plt.errorbar(x, y, yerr=0.1, uplims=upperlimits, lolims=lowerlimits)
After Change
fig = plt.figure()
x = np.arange(10)
y = np.sin(x / 20 * np.pi)
yerr = np.linspace(0.05, 0.2, 10)
plt.errorbar(x, y, yerr=yerr)
plt.errorbar(x, y + 1, yerr=yerr, uplims=True)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: matplotlib/matplotlib
Commit Name: 36159c6aece4ec07aad8750f0a0b1f8465c32f78
Time: 2019-01-10
Author: 2836374+timhoffm@users.noreply.github.com
File Name: examples/lines_bars_and_markers/errorbar_limits_simple.py
Class Name:
Method Name:
Project Name: librosa/librosa
Commit Name: b9a5f7d2bf056e397ee527425c41d214265ca59c
Time: 2013-11-14
Author: brm2132@columbia.edu
File Name: librosa/display.py
Class Name:
Method Name: specshow
Project Name: scikit-image/scikit-image
Commit Name: 7d0609ef91b94a38064d8374794d652e0cdc7c06
Time: 2021-01-14
Author: madphysicist@users.noreply.github.com
File Name: skimage/transform/hough_transform.py
Class Name:
Method Name: probabilistic_hough_line