Skip to content

Commit b743235

Browse files
committed
Updates to experimental default distribution for tasmin and tasmax for QDM and QM.
The beta distribution can, especially in running window settings, lead to unstable fits. Therefore, we replace the experimental default setting through a normal distribution.
1 parent dd45fc1 commit b743235

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ibicus/debias/_quantile_delta_mapping.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
psl: {"distribution": scipy.stats.beta, "trend_preservation": "absolute"},
4444
rlds: {"distribution": scipy.stats.beta, "trend_preservation": "absolute"},
4545
sfcwind: {"distribution": scipy.stats.gamma, "trend_preservation": "relative"},
46-
tasmin: {"distribution": scipy.stats.beta, "trend_preservation": "absolute"},
47-
tasmax: {"distribution": scipy.stats.beta, "trend_preservation": "absolute"},
46+
tasmin: {"distribution": scipy.stats.norm, "trend_preservation": "absolute"},
47+
tasmax: {"distribution": scipy.stats.norm, "trend_preservation": "absolute"},
4848
}
4949

5050

ibicus/debias/_quantile_mapping.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@
6868
"mapping_type": "parametric",
6969
},
7070
tasmin: {
71-
"distribution": scipy.stats.beta,
71+
"distribution": scipy.stats.norm,
7272
"detrending": "additive",
7373
"mapping_type": "parametric",
7474
},
7575
tasmax: {
76-
"distribution": scipy.stats.beta,
76+
"distribution": scipy.stats.norm,
7777
"detrending": "additive",
7878
"mapping_type": "parametric",
7979
},

0 commit comments

Comments
 (0)