We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f54a16c commit 303fb19Copy full SHA for 303fb19
autoemulate/core/plotting.py
@@ -97,7 +97,7 @@ def plot_xy(
97
assert ax is not None, "ax must be provided"
98
# Scatter plot with error bars for predictions
99
if y_std is not None:
100
- if error_style not in ["bars", "fill"]:
+ if error_style.lower() not in ["bars", "fill"]:
101
msg = "error_style must be one of ['bars', 'fill']"
102
raise ValueError(msg)
103
if error_style == "bars":
0 commit comments