We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi there, thank you for creating this wonderful package!
I found something strange when I went into the spei source codes from Lines 282-286
if (distribution == "Gamma" | distribution == "PearsonIII") { spei[ff, s] <- qnorm(pze + (1 - pze) * pnorm(spei[ff, s])) } spei[ff, s] <- qnorm(cdf_res)
The Lines 282-285 seem useless because the spei[ff, s] are set to NA according to the precious setting in Line 222 spei <- acu * NA.
spei <- acu * NA
So, do you think it should be ignored? which makes sense because cdf_res is the essential one for the final spei.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi there, thank you for creating this wonderful package!
I found something strange when I went into the spei source codes from Lines 282-286
The Lines 282-285 seem useless because the spei[ff, s] are set to NA according to the precious setting in Line 222
spei <- acu * NA
.So, do you think it should be ignored? which makes sense because cdf_res is the essential one for the final spei.
The text was updated successfully, but these errors were encountered: