forked from hcommenges/ExaminatR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdistrib.Rnw
22 lines (15 loc) · 867 Bytes
/
distrib.Rnw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
% !Rnw root = exam.Rnw
\textbf{Distribution des statistiques de test}
\begin{itemize}
\item Que représente les aires sous les courbes?
\item Comment lire la valeur seuil en rapport avec l'analyse XXX?
\end{itemize}
<<distrib1, eval= input$checkdistribchi, echo=FALSE, results='markup', dev="my_png", fig.ext="png", fig.pos="H", warning=FALSE, message=FALSE>>=
print(ChiDistribution(df = input$chidf, alpha = input$chialpha))
@
<<distrib2, eval= input$checkdistribt, echo=FALSE, results='markup', dev="my_png", fig.ext="png", fig.pos="H", warning=FALSE, message=FALSE>>=
print(TDistribution(df = input$tdf, alpha = input$talpha))
@
<<distrib3, eval= input$checkdistribf, echo=FALSE, results='markup', dev="my_png", fig.ext="png", fig.pos="H", warning=FALSE, message=FALSE>>=
print(FDistribution(df1 = input$fdf1, df2 = input$fdf2, alpha = input$falpha))
@