Kevin Nowaczyk

Results 265 comments of Kevin Nowaczyk

If you click "Next item" a few times in the Biometrika article above, to page 334, there's another technical article that is probably helpful. The Range in Random Samples H....

...And I think I finally found the generalized equation. It's in the wiki article. I'm trying to verify this PDF by numerically integrating it to the CDF using a t...

Here's the literature source for the fortran code from above. I think this fills the blanks in some on what it is actually numerically integrating. http://www.jstor.org/stable/2347300?seq=1#page_scan_tab_contents

Here's a paper with the same equation in a different form. I'm still trying to figure out how this formula arises. i think I have an intuitive sense on the...

I have something in the works on this if you would like to putz with it: https://github.com/Beakerboy/math-php/blob/StudentizedRange/src/Probability/Distribution/Continuous/StudentizedRange.php

I don't know WHAT a shared namespace would be called. The Arithmetic, Support, and Special classes are all libraries of static methods, while Piecewise and Polynomial are instantiable objects. In...

Would it suffice to add something like this to each distribution? Here are MLE and log-likelihood calculations for a normal distribution. Similar methods could be added to others. ```` /**...

Each distribution has a parent class (Continuous) that the generic version could be placed in. If you have a generalized method for calculating the log-likelihood, feel free to add it...

I can eventually. I figured I'd leave it as a feature request that I think would benefit the project as a whole.

I was thinking about working on some of these techniques when I started on this project. My plan on Interpolation was to add it to the regression namespace. My thought...