FSharp.Stats
FSharp.Stats copied to clipboard
statistical testing, linear algebra, machine learning, fitting and signal processing in F#
Quadratic mean or RMS is a very popular measure which seems to be missing. [Wikipedia page for Quadratic mean](https://en.wikipedia.org/wiki/Root_mean_square)
Closes #233 **Changes** - Add Seq.meanQuadratic - Add Seq.meanQuadraticBy **Description** This PR adds the Quadratic mean (also known as RMS). Here is the [wikipedia page for the Quadratic mean](https://en.wikipedia.org/wiki/Root_mean_square). -...
**Is your feature request related to a problem? Please describe.** Confidence and prediction bands offer a interesting insight into regression outcomes. While the fitted function (correct model selection is assumed)...
### Description Removed the obsolete Wilcoxon Distribution, as it is not used in the signed-rank tests.
**Please reference the issue(s) this PR is related to** Tackles #117 **Please list the changes introduced in this PR** - U test added **Description** Mann-Whitney-U test added to the Testing...
**Describe what you wanna discuss about** The function (role) of the function `Distributions.Continuous.ChiSquared.PDFLn` is unclear. It is certainly not the ln result of `ChiSquared.PDF` since ```fsharp Distributions.Continuous.ChiSquared.PDFLn 2. 4.7 //...
**Is your feature request related to a problem? Please describe.** At the moment `Distributions.Discrete.Hypergeometric.CDF` has input parameter `k: float`. `k` is the number of success events and must be a...
**Is your feature request related to a problem? Please describe.** The syntax for the `static member Support ...` functions are written in a different syntax. Bernoulli has a list, whereas...
I am not sure if this can be labeled as a bug, please adjust accordingly. Functions that are approximated (such as gamma, erfcx, etc.) may return incorrect results for edge...
At the moment only the PDF of the Poisson distribution is implememted. Also the there is no if match case implemented in the PDF, which could results in incorrect input...