Skip to content

Commit 37d3e93

Browse files
committed
Restore support for old matplotlib
1 parent cbcd70e commit 37d3e93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/ensemble/plot_gradient_boosting_quantile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def f(x):
9999
plt.plot(xx, y_upper, 'k-')
100100
plt.plot(xx, y_lower, 'k-')
101101
plt.fill_between(xx.ravel(), y_lower, y_upper,
102-
alpha=0.5, fc='b', ec='None',
102+
alpha=0.5, ec='None',
103103
label='Predicted 90% interval')
104104
plt.xlabel('$x$')
105105
plt.ylabel('$f(x)$')
@@ -252,7 +252,7 @@ def f(x):
252252
plt.plot(xx, y_upper, 'k-')
253253
plt.plot(xx, y_lower, 'k-')
254254
plt.fill_between(xx.ravel(), y_lower, y_upper,
255-
alpha=0.5, fc='b', ec='None',
255+
alpha=0.5, ec='None',
256256
label='Predicted 90% interval')
257257
plt.xlabel('$x$')
258258
plt.ylabel('$f(x)$')

0 commit comments

Comments
 (0)