Skip to content

Commit

Permalink
Update F Distribution dokumentation
Browse files Browse the repository at this point in the history
  • Loading branch information
LibraChris committed Jul 28, 2022
1 parent 3cce1e3 commit 8d03e0f
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions docs/Distributions.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -253,14 +253,7 @@ Generally speaking, the F-tests and the resulting F-Distribution is utilized for
In practice, it is most commonly used to compare the variances within a group to the variance between different groups, as seen in the Analysis of varaince.
*)
// The F-Distribution with the numerator degree of freedom 10. and the denominator degree of freedom 25. is build like this
let fDistrobution =
Continuous.f 10. 25.

(**
*)
(***hide***)
let fParams = [(2.,1.);(5.,2.);(10.,1.);(100.,100.)]
let xF = [0. .. 1. .. 5.]

Expand All @@ -286,7 +279,7 @@ fPDFs |> GenericChart.toChartHTML
(***include-it-raw***)
(**
*)
(***hide***)

let cdfF a b =
xF
|> List.map (Continuous.F.CDF a b)
Expand All @@ -308,7 +301,6 @@ fCDFs
fCDFs |> GenericChart.toChartHTML
(***include-it-raw***)


(**
## Discrete
Expand Down

0 comments on commit 8d03e0f

Please sign in to comment.