Skip to content

Commit

Permalink
Add F Test
Browse files Browse the repository at this point in the history
  • Loading branch information
KilnOfTheSecondFlame committed Dec 8, 2018
1 parent 661a0bc commit 9b87612
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions STAT_Python_Referenzkarte.tex
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,13 @@ \subsubsection*{T Verteilung}
\pythoninline{st.t.ppf(0.05, df=v)} \\
Quantile einer T-Verteilung mit \textit{v} Freiheitsgrade

\subsubsection*{F Verteilung}
\pythoninline{st.f.cdf(x=F, dfn=DF_G, dfd=DF_E)}\\
Kumulative Wahrscheinlichkeitsverteilung mit $F=\frac{MS_G}{MS_E}$, $DF_G = g - 1$, $DF_E = n - g$ und $n = m\cdot g$\\

\pythoninline{st.f.ppf(q=0.95, dfn=DF_G, dfd=DF_E)}\\
95\% Perzentil mit $DF_G = g - 1$, $DF_E = n - g$ und $n = m\cdot g$

\subsubsection*{Generierung zufallsverteilter Zahlen}

\pythoninline{st.norm.rvs(size=n)}\\
Expand Down Expand Up @@ -396,6 +403,10 @@ \subsection*{Vertrauensintervall}
\pythoninline{ scale=6/np.sqrt(10))} \\
99\% Vertrauensintervall falls $X \sim \mathcal{N}(31, 6 / \sqrt{10})$

% TODO Remove, just for layout purposes
\vfill\null
\columnbreak

\subsection*{Statistische Tests}
\pythoninline{st.binom_test(x=3, n=5, p=0.5,} \\
\pythoninline{ alternative='two-sided')}\\
Expand Down

0 comments on commit 9b87612

Please sign in to comment.