-
Notifications
You must be signed in to change notification settings - Fork 15
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
quantiles on square transformed densities incorrect #129
Comments
This is the cause of the problem described at https://forum.posit.co/t/fable-and-distributional-packages-hilo-function-error/193716 |
Yes, transformations are assumed monotonic over the support of the distribution. distributional/R/transformed.R Lines 165 to 174 in 3a72169
|
Also noting that this is mentioned in the documentation of distributional/R/transformed.R Lines 10 to 11 in 3a72169
|
This is now patch fixed, essentially since the domain goes from (-Inf, Inf) to [0, Inf) the monotonicity requirement of The better solution requires a symbolic understanding of function monotonicity like:
|
Created on 2024-10-04 with reprex v2.1.1
Possibly because transformation is not monotonic over sample space of distribution?
The text was updated successfully, but these errors were encountered: