Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
Reduce window for time series to 2 days
Browse files Browse the repository at this point in the history
2 weeks still seems to cause a timeout in production, so I'm going to
ratchet this way down just to see if I can get things working, and from
there we can see about what resources we need to get a wider window.
  • Loading branch information
esheehan-gsl committed Nov 16, 2023
1 parent c38e829 commit 553bae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unified_graphics/diag.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ def history(
variable.value,
)

start = initialization_time - timedelta(weeks=2)
start = initialization_time - timedelta(days=2)
df = pd.read_parquet(
parquet_file,
columns=["initialization_time", "obs_minus_forecast_unadjusted"],
Expand Down

0 comments on commit 553bae8

Please sign in to comment.