Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stats function moved to be better shared across metrics #1014

Merged
merged 20 commits into from
Jan 10, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
clean up
  • Loading branch information
lee1043 committed Dec 24, 2023
commit 071279bab9e3539b790327b2b0f5eb296521d21e
9 changes: 7 additions & 2 deletions pcmdi_metrics/mean_climate/mean_climate_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,13 @@
load_and_regrid,
mean_climate_metrics_to_json,
)
from pcmdi_metrics.utils import apply_landmask, create_land_sea_mask, create_target_grid
from pcmdi_metrics.variability_mode.lib import sort_human, tree
from pcmdi_metrics.utils import (
apply_landmask,
create_land_sea_mask,
create_target_grid,
sort_human,
tree,
)

print("--- prepare mean climate metrics calculation ---")

Expand Down
Loading