I wonder if a square root is supposed to occur in lines 86 as well as 89 of confidence_interval.jl. The formula for the confidence interval for hedges Hedges g I am familiar with would be the standard error of the g statistic, which would be the part [σ² = √(((nx + ny) / (nx * ny)) + (es^2 / 2(nx + ny)))], times the percent point function of the normal distribution [z = Distributions.quantile(Normal(), uq)] added or subtracted from the point estimate.
In the current code σ² is rooted once more. in line 89.
But it could be that I am just missing something...
I wonder if a square root is supposed to occur in lines 86 as well as 89 of confidence_interval.jl. The formula for the confidence interval for hedges Hedges g I am familiar with would be the standard error of the g statistic, which would be the part [σ² = √(((nx + ny) / (nx * ny)) + (es^2 / 2(nx + ny)))], times the percent point function of the normal distribution [z = Distributions.quantile(Normal(), uq)] added or subtracted from the point estimate.
In the current code σ² is rooted once more. in line 89.
But it could be that I am just missing something...