Skip to content

Commit

Permalink
Suppress plot lint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
reidjohnson committed Oct 4, 2023
1 parent 6540e9a commit 7470247
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/plot_quantile_toy_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def make_toy_dataset(n_samples, seed=0):
y_pred_upp = y_pred[:, 2]

plt.plot(X_test, y_test, ".", c="#f2a619", label="Test Observations", ms=5)
plt.plot(xx, (xx * np.sin(xx)), c="black", label="$f(x) = x\,\sin(x)$", lw=2)
plt.plot(xx, (xx * np.sin(xx)), c="black", label="$f(x) = x\,\sin(x)$", lw=2) # noqa: W605
plt.plot(xx, y_pred_med, c="#006aff", label="Predicted Median", lw=3, ms=5)
plt.fill_between(
xx.ravel(),
Expand Down

0 comments on commit 7470247

Please sign in to comment.