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 69a6097 commit fab1fd7Copy full SHA for fab1fd7
deepsensor/plot.py
@@ -954,6 +954,8 @@ def prediction(
954
ax = axes[row_i, col_i]
955
956
if pred.mode == "on-grid":
957
+ if "init_time" in pred[0].indexes:
958
+ raise ValueError("Plotting forecasts not currently supported.")
959
if param == "std":
960
vmin = 0
961
else:
@@ -1000,6 +1002,8 @@ def prediction(
1000
1002
# )
1001
1003
1004
elif pred.mode == "off-grid":
1005
+ if "init_time" in pred[0].index.names:
1006
1007
import seaborn as sns
1008
1009
hue = (
0 commit comments