update readme
This commit is contained in:
@@ -59,7 +59,7 @@ def truncation_correction(mu: float, sigma: float, C: float = 350) -> tuple:
|
||||
# E[D | D > C] = μ + σ * φ(z) / (1 - Φ(z))
|
||||
# 修正后: μ̃ ≈ μ * (1 + α * p_trunc)
|
||||
# 这里使用简化的线性修正
|
||||
correction_factor = 1 + 0.4 * p_trunc
|
||||
correction_factor = 1 + 0.1 * p_trunc
|
||||
mu_tilde = mu * correction_factor
|
||||
return mu_tilde, p_trunc, True
|
||||
|
||||
|
||||
Reference in New Issue
Block a user