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

Improve the parallel coordinate plot code #1075

Merged
merged 7 commits into from
Apr 23, 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
Next Next commit
reduce print: enable it only when it is debug mode
  • Loading branch information
lee1043 committed Mar 27, 2024
commit 8a9b173ba91a571e88053100a13245f432521962
4 changes: 2 additions & 2 deletions pcmdi_metrics/graphics/share/read_json_mean_clim.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ def extract_data(results_dict, var_list, region, stat, season, mip, debug=False)
model_list = sorted(
list(results_dict["rlut"]["RESULTS"].keys()), key=str.casefold
)

print("extract_data:: model_list: ", model_list)
if debug:
print("extract_data:: model_list: ", model_list)

data_list = []
for model in model_list:
Expand Down