<?xml version="1.0" encoding="UTF-8" ?>
<!-- RSS generated by PHPBoost on Tue, 14 Apr 2026 10:37:12 +0200 -->

<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Documentation]]></title>
		<atom:link href="https://www.sthda.com/french/syndication/rss/wiki/16" rel="self" type="application/rss+xml"/>
		<link>https://www.sthda.com</link>
		<description><![CDATA[Derniers articles de la catégorie Statistiques]]></description>
		<copyright>(C) 2005-2026 PHPBoost</copyright>
		<language>fr</language>
		<generator>PHPBoost</generator>
		
		
		<item>
			<title><![CDATA[Test de Shapiro-Wilk avec RQuery]]></title>
			<link>https://www.sthda.com/french/wiki/test-de-shapiro-wilk-avec-rquery</link>
			<guid>https://www.sthda.com/french/wiki/test-de-shapiro-wilk-avec-rquery</guid>
			<description><![CDATA[La fonction ? utiliser s'appelle <strong>rquery.shapiro_test</strong><br />
<br />
Cette fonction teste si un ?chantillon suit une loi normal<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-format-du-fichier">Format du fichier</h2><br />
<br />
Le fichier accept? est au format .txt tabulation. Les variables sont en colonnes.<br />
<br />
<span class="success">T?l?charger un exemple de fichier en cliquant   <a href="https://www.sthda.com/french/french/upload/test_moyenne_format.txt">ici</a> </span><br />
<br />
 <img src="https://www.sthda.com/french/french/templates/sthda_design/images/important.png" alt="" class="valign_" />Enregistrer le fichier au format .txt tabulation.<br />
Les variables sont en colonne.<br />
<br />
<span class="notice">Pour en savoir plus sur le format de fichier accept? suivre le lien suivant :<a href="https://www.sthda.com/french/french/wiki/importation-et-exportation-des-donnees-avec-rquery-1-0"> Importation et exportation des donn?es avec RQuery-1.0</a><br />
<br />
</span><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation-de-la-fonction-rquery-shapiro-test">Utilisation de la fonction rquery.shapiro_test</h2><br />
<br />
<span class="success">Le fichier t?l?charg? contient 7 variables (7 colonnes de donn?es) dont 2 correspondent ? des colonnes groupes : colonne <strong>Competition</strong> et <strong>Medaille</strong>.<br />
</span><br />
<br />
Faisons le test sur la variable Javeline<br />
<br />
Voici le code:<br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;">&nbsp;
<span style="color: #0000FF; font-weight: bold;">rquery.<span style="">shapiro_test</span></span><span style="color: #080;">&#40;</span>varName<span style="color: #080;">=</span><span style="color: #ff0000;">"Javeline"</span><span style="color: #080;">&#41;</span> 
&nbsp;</pre></pre></div><br />
<br />
R vous demandera d'indiquer le fichier contenant les donn?es. Indiquer le chemin du fichier que vous venez de t?l?charger.<br />
<br />
Le r?sultat ci-dessous est montr? ? l'?cran.<br />
<br />
<span class="formatter-code">Code TEXT :</span><div class="code"><pre style="display:inline;"><pre class="text" style="font-family:monospace;">&nbsp;
&nbsp;
Shapiro-Wilk normality test
&nbsp;
data:  d$Long.jump 
W = 0.9876, p-value = 0.9289
&nbsp;</pre></pre></div><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisateur-avance">Utilisateur avanc?</h2><br />
<br />
<a href="https://www.sthda.com/french/french/wiki/rquery-shapiro-test">rquery.shapiro_test</a>]]></description>
			<pubDate>Tue, 23 Aug 2011 21:07:58 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[Test de Khi2 et test exact de Fisher avec RQuery]]></title>
			<link>https://www.sthda.com/french/wiki/test-de-khi2-et-test-exact-de-fisher-avec-rquery</link>
			<guid>https://www.sthda.com/french/wiki/test-de-khi2-et-test-exact-de-fisher-avec-rquery</guid>
			<description><![CDATA[La fonction ? utiliser s'appelle <strong>rquery.chisq</strong><br />
<br />
Cette fonction fait un test de Khi2 et le test exact de Fisher.<br />
Cette fonction s'applique sur des variables qualitatives<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-format-du-fichier">Format du fichier</h2><br />
<br />
Le fichier accept? est au format .txt tabulation. Les variables sont en colonnes.<br />
<br />
<span class="success">T?l?charger un exemple de fichier en cliquant   <a href="https://www.sthda.com/french/french/upload/test_moyenne_format.txt">ici</a> </span><br />
<br />
 <img src="https://www.sthda.com/french/french/templates/sthda_design/images/important.png" alt="" class="valign_" />Enregistrer le fichier au format .txt tabulation.<br />
Les variables sont en colonne.<br />
<br />
<span class="notice">Pour en savoir plus sur le format de fichier accept? suivre le lien suivant :<a href="https://www.sthda.com/french/french/wiki/importation-et-exportation-des-donnees-avec-rquery-1-0"> Importation et exportation des donn?es avec RQuery-1.0</a><br />
<br />
</span><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation-de-la-fonction-rquery-chisq">Utilisation de la fonction rquery.chisq</h2><br />
<br />
<span class="success">Le fichier t?l?charg? contient 7 variables (7 colonnes de donn?es) dont 2 correspondent ? des colonnes groupes : colonne <strong>Competition</strong> et <strong>Medaille</strong>.<br />
</span><br />
<br />
Le test de Khi2 est ? faire sur les variables qualitatives <strong>Competition</strong> et <strong>Medaille</strong>.<br />
<br />
Voici le code:<br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;">&nbsp;
res<span style="color: #080;"><-</span><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">chisq</span></span><span style="color: #080;">&#40;</span>rowVar<span style="color: #080;">=</span><span style="color: #ff0000;">"Competition"</span>, colVar<span style="color: #080;">=</span><span style="color: #ff0000;">"Medaille"</span><span style="color: #080;">&#41;</span> 
&nbsp;</pre></pre></div><br />
<br />
R vous demandera d'indiquer le fichier contenant les donn?es. Indiquer le chemin du fichier que vous venez de t?l?charger.<br />
<br />
Le r?sultat ci-dessous est montr? ? l'?cran.<br />
<br />
<span class="formatter-code">Code TEXT :</span><div class="code"><pre style="display:inline;"><pre class="text" style="font-family:monospace;">&nbsp;
==========================
Chisquare test : Competition and Medaille
==========================
&nbsp;
x = Competition and y = Medaille
&nbsp;
Contengency Table
---------------------
           Medaille
Competition Argent Bronze Or
   Decastar      6      7  0
   OlympicG     10      0 18
&nbsp;
Expected value 
---------------------
           Medaille
Competition    Argent   Bronze        Or
   Decastar  5.073171 2.219512  5.707317
   OlympicG 10.926829 4.780488 12.292683
&nbsp;
Chisquare test 
---------------------
&nbsp;
    Pearson's Chi-squared test
&nbsp;
data:  .Table 
X-squared = 23.682, df = 2, p-value = 7.203e-06
&nbsp;
&nbsp;
    Pearson's Chi-squared test
&nbsp;
data:  .Table 
X-squared = 23.682, df = 2, p-value = 7.203e-06
&nbsp;</pre></pre></div><br />
<br />
Pour faire le test exact de Fisher :<br />
<br />
<span class="success"><span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;">&nbsp;
res<span style="color: #080;"><-</span><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">chisq</span></span><span style="color: #080;">&#40;</span>rowVar<span style="color: #080;">=</span><span style="color: #ff0000;">"Competition"</span>, colVar<span style="color: #080;">=</span><span style="color: #ff0000;">"Medaille"</span>, <span style="color: #0000FF; font-weight: bold;">fisher.<span style="">test</span></span><span style="color: #080;">=</span>TRUE<span style="color: #080;">&#41;</span> 
&nbsp;</pre></pre></div><br />
</span><br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisateur-avance">Utilisateur avanc?</h2><br />
<br />
<a href="https://www.sthda.com/french/french/wiki/rquery-chisq">rquery.chisq</a>]]></description>
			<pubDate>Tue, 23 Aug 2011 20:17:03 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[Test de wilcoxon avec RQuery]]></title>
			<link>https://www.sthda.com/french/wiki/test-de-wilcoxon-avec-rquery</link>
			<guid>https://www.sthda.com/french/wiki/test-de-wilcoxon-avec-rquery</guid>
			<description><![CDATA[La fonction ? utiliser s'appelle <strong>rquery.wilcoxon</strong><br />
<br />
Cette fonction fait un test non param?trique de type wilcoxon.<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-format-du-fichier">Format du fichier</h2><br />
<br />
Le fichier accept? est au format .txt tabulation. Les variables sont en colonnes.<br />
<br />
<span class="success">T?l?charger un exemple de fichier en cliquant   <a href="https://www.sthda.com/french/french/upload/test_moyenne_format.txt">ici</a> </span><br />
<br />
 <img src="https://www.sthda.com/french/french/templates/sthda_design/images/important.png" alt="" class="valign_" />Enregistrer le fichier au format .txt tabulation.<br />
Les variables sont en colonne.<br />
<br />
<span class="notice">Pour en savoir plus sur le format de fichier accept? suivre le lien suivant :<a href="https://www.sthda.com/french/french/wiki/importation-et-exportation-des-donnees-avec-rquery-1-0"> Importation et exportation des donn?es avec RQuery-1.0</a><br />
<br />
</span><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation-de-la-fonction-rquery-wilcoxon">Utilisation de la fonction rquery.wilcoxon</h2><br />
<br /><br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-test-de-wilcoxon-sur-2-echantillons-independants">Test de wilcoxon sur 2 ?chantillons ind?pendants</h3><br />
<br /><br />
<span class="success">Le fichier t?l?charg? contient 7 variables (7 colonnes de donn?es) dont 2 correspondent ? des colonnes groupes : colonne <strong>Competition</strong> et <strong>Medaille</strong>.<br />
</span><br />
<br />
Faisons le test de wilcoxon sur la variable <strong>Poids</strong> en fonction de la colonne <strong>Competition</strong>(lequel reparti les donn?es en 2 sous groupes)<br />
<br />
Voici le code:<br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;">&nbsp;
<span style="color: #0000FF; font-weight: bold;">rquery.<span style="">wilcoxon</span></span><span style="color: #080;">&#40;</span><span style="color: #0000FF; font-weight: bold;">var</span><span style="color: #080;">=</span><span style="color: #ff0000;">"Poids"</span>, grpName<span style="color: #080;">=</span><span style="color: #ff0000;">"Competition"</span><span style="color: #080;">&#41;</span> 
&nbsp;</pre></pre></div><br />
<br />
R vous demandera d'indiquer le fichier contenant les donn?es. Indiquer le chemin du fichier que vous venez de t?l?charger.<br />
<br />
Le r?sultat ci-dessous est montr? ? l'?cran.<br />
<br />
<span class="formatter-code">Code TEXT :</span><div class="code"><pre style="display:inline;"><pre class="text" style="font-family:monospace;">&nbsp;
==========================
Wilcon test : Poids by Competition
==========================
&nbsp;
x = Poids and group = Competition
&nbsp;
    Wilcoxon rank sum test with continuity correction
&nbsp;
data:  x by group 
W = 0, p-value = 2.878e-07
alternative hypothesis: true location shift is not equal to 0
&nbsp;</pre></pre></div><br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-test-de-wilcoxon-sur-2-echantillons-apparies">Test de wilcoxon sur 2 ?chantillons appari?s</h3><br />
<br /><br />
Il suffit d'indiquer les 2 variables (<strong>var </strong>et <strong>var2</strong>) pour lesquelles on souhaite faire le test appari?.<br />
<br />
Je choisi au hasard la colonne Poids et la colonne Javeline<br />
<br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;">&nbsp;
<span style="color: #0000FF; font-weight: bold;">rquery.<span style="">wilcoxon</span></span><span style="color: #080;">&#40;</span><span style="color: #0000FF; font-weight: bold;">var</span><span style="color: #080;">=</span><span style="color: #ff0000;">"Poids"</span>, var2<span style="color: #080;">=</span><span style="color: #ff0000;">"Javeline"</span>, paired<span style="color: #080;">=</span>TRUE<span style="color: #080;">&#41;</span> 
&nbsp;</pre></pre></div><br />
<br />
<span class="notice">Il ne faut pas oublier de pr?ciser dans la fonction que <strong>paired=TRUE</strong></span><br />
<br />
<br />
<span class="formatter-code">Code TEXT :</span><div class="code"><pre style="display:inline;"><pre class="text" style="font-family:monospace;">&nbsp;
==========================
paired Wilcoxon test : Poids and Javeline
==========================
&nbsp;
x = Poids and y = Javeline
&nbsp;
    Wilcoxon signed rank test
&nbsp;
data:  x and y 
V = 812, p-value = 2.534e-08
alternative hypothesis: true location shift is not equal to 0 </pre></pre></div><br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisateur-avance">Utilisateur avanc?</h2><br />
<br />
<a href="https://www.sthda.com/french/french/wiki/rquery-wilcoxon">rquery.wilcoxon</a>]]></description>
			<pubDate>Mon, 22 Aug 2011 21:15:56 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[Analyse de variance avec RQuery]]></title>
			<link>https://www.sthda.com/french/wiki/analyse-de-variance-avec-rquery</link>
			<guid>https://www.sthda.com/french/wiki/analyse-de-variance-avec-rquery</guid>
			<description><![CDATA[La fonction ? utiliser s'appelle <strong>rquery.anova</strong><br />
<br />
L'analyse de variance ANOVA est utilis?e lorsque l'on souhaite comparer plusieurs moyennes.<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-format-du-fichier">Format du fichier</h2><br />
<br />
Le fichier accept? est au format .txt tabulation. Les variables sont en colonnes.<br />
<br />
<span class="success">T?l?charger un exemple de fichier en cliquant   <a href="https://www.sthda.com/french/french/upload/test_moyenne_format.txt">ici</a> </span><br />
<br />
 <img src="https://www.sthda.com/french/french/templates/sthda_design/images/important.png" alt="" class="valign_" />Enregistrer le fichier au format .txt tabulation.<br />
Les variables sont en colonne.<br />
<br />
<span class="notice">Pour en savoir plus sur le format de fichier accept? suivre le lien suivant :<a href="https://www.sthda.com/french/french/wiki/importation-et-exportation-des-donnees-avec-rquery-1-0"> Importation et exportation des donn?es avec RQuery-1.0</a><br />
<br />
</span><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation-de-la-fonction-rquery-anova">Utilisation de la fonction rquery.anova</h2><br />
<br /><br />
<span class="success">Le fichier t?l?charg? contient 7 variables (7 colonnes de donn?es) dont 2 correspondent ? des colonnes groupes : colonne <strong>Competition</strong> et <strong>Medaille</strong>.<br />
</span><br />
<br />
Faisons l'anova sur la variable <strong>Poids</strong> en fonction de la colonne <strong>Medaille </strong>(lequel reparti les donn?es en 3 sous groupes)<br />
<br />
Voici le code:<br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;">&nbsp;
<span style="color: #0000FF; font-weight: bold;">rquery.<span style="">anova</span></span><span style="color: #080;">&#40;</span>varName<span style="color: #080;">=</span><span style="color: #ff0000;">"Poids"</span>, grpName<span style="color: #080;">=</span><span style="color: #ff0000;">"Medaille"</span><span style="color: #080;">&#41;</span> 
&nbsp;</pre></pre></div><br />
<br />
R vous demandera d'indiquer le fichier contenant les donn?es. Indiquer le chemin du fichier que vous venez de t?l?charger.<br />
<br />
Le r?sultat est montr? ? l'?cran.<br />
<br />
<br />
<span class="notice"><br />
Un fichier est ?galement enregistr? et ouvert automatiquement ? la fin de l'ex?cution de la fonction.<br />
Le fichier se trouve dans le dossier Result/Statistics/anova.txt<br />
</span><br />
<br />
<span class="success"><br />
Voici un exemple de fichier g?n?r?: <a href="https://www.sthda.com/french/french/upload/annova.txt">cliquez ici</a><br />
</span><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisateur-avance">Utilisateur avanc?</h2><br />
<br />
<a href="https://www.sthda.com/french/french/wiki/rquery-anova">rquery.anova</a>]]></description>
			<pubDate>Mon, 22 Aug 2011 21:03:50 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[Test F : Comparaison de deux variances avec RQuery]]></title>
			<link>https://www.sthda.com/french/wiki/test-f-comparaison-de-deux-variances-avec-rquery</link>
			<guid>https://www.sthda.com/french/wiki/test-f-comparaison-de-deux-variances-avec-rquery</guid>
			<description><![CDATA[La fonction ? utiliser s'appelle <strong>rquery.var_test</strong><br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-format-du-fichier">Format du fichier</h2><br />
<br />
Le fichier accept? est au format .txt tabulation. Les variables sont en colonnes.<br />
<br />
<span class="success">T?l?charger un exemple de fichier en cliquant   <a href="https://www.sthda.com/french/french/upload/test_moyenne_format.txt">ici</a> </span><br />
<br />
 <img src="https://www.sthda.com/french/french/templates/sthda_design/images/important.png" alt="" class="valign_" />Enregistrer le fichier au format .txt tabulation.<br />
Les variables sont en colonne.<br />
<br />
<span class="notice">Pour en savoir plus sur le format de fichier accept? suivre le lien suivant :<a href="https://www.sthda.com/french/french/wiki/importation-et-exportation-des-donnees-avec-rquery-1-0"> Importation et exportation des donn?es avec RQuery-1.0</a><br />
<br />
</span><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation-de-la-fonction-rquery-var-test">Utilisation de la fonction rquery.var_test</h2><br />
<br /><br />
<span class="success">Le fichier t?l?charg? contient 7 variables (7 colonnes de donn?es) dont 2 correspondent ? des colonnes groupes : colonne <strong>Competition</strong> et <strong>Medaille</strong>.<br />
</span><br />
<br />
Faisons le test de variance sur la variable <strong>Poids</strong> en fonction de la colonne <strong>Competition </strong>(lequel reparti les donn?es en 2 sous groupes)<br />
<br />
Voici le code:<br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;">&nbsp;
<span style="color: #0000FF; font-weight: bold;">rquery.<span style="">var_test</span></span><span style="color: #080;">&#40;</span><span style="color: #0000FF; font-weight: bold;">var</span><span style="color: #080;">=</span><span style="color: #ff0000;">"Poids"</span>, grpName<span style="color: #080;">=</span><span style="color: #ff0000;">"Competition"</span><span style="color: #080;">&#41;</span> 
&nbsp;</pre></pre></div><br />
<br />
R vous demandera d'indiquer le fichier contenant les donn?es. Indiquer le chemin du fichier que vous venez de t?l?charger.<br />
<br />
Le r?sultat est montr? ? l'?cran:<br />
<br />
<span class="formatter-code">Code TEXT :</span><div class="code"><pre style="display:inline;"><pre class="text" style="font-family:monospace;">&nbsp;
==========================
F test : Poids by Competition
==========================
&nbsp;
x = Poids and group = Competition
&nbsp;
    F test to compare two variances
&nbsp;
data:  x by group 
F = 0.0511, num df = 12, denom df = 27, p-value = 4.256e-06
alternative hypothesis: true ratio of variances is not equal to 1 
95 percent confidence interval:
 0.02070519 0.15273926 
sample estimates:
ratio of variances 
        0.05111598
&nbsp;</pre></pre></div><br />
<br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisateur-avance">Utilisateur avanc?</h2><br />
<br />
<a href="https://www.sthda.com/french/french/wiki/rquery-var-test">rquery.var_test</a>]]></description>
			<pubDate>Sun, 21 Aug 2011 22:11:35 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[Statistiques descriptives avec RQuery]]></title>
			<link>https://www.sthda.com/french/wiki/statistiques-descriptives-avec-rquery</link>
			<guid>https://www.sthda.com/french/wiki/statistiques-descriptives-avec-rquery</guid>
			<description><![CDATA[La fonction ? utiliser s'appelle <strong>rquery.summary</strong><br />
<br />
Elle permet de faire une description statistiques d'une variable num?rique ou d'une table de donn?es.<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-format-du-fichier">Format du fichier</h2><br />
<br />
Le fichier accept? est au format .txt tabulation. Les variables sont en colonnes.<br />
<br />
<span class="success">T?l?charger un exemple de fichier en cliquant   <a href="https://www.sthda.com/french/french/upload/test_moyenne_format.txt">ici</a> </span><br />
<br />
 <img src="https://www.sthda.com/french/french/templates/sthda_design/images/important.png" alt="" class="valign_" />Enregistrer le fichier au format .txt tabulation.<br />
Les variables sont en colonne.<br />
<br />
<span class="notice">Pour en savoir plus sur le format de fichier accept? suivre le lien suivant :<a href="https://www.sthda.com/french/french/wiki/importation-et-exportation-des-donnees-avec-rquery-1-0"> Importation et exportation des donn?es avec RQuery-1.0</a><br />
<br />
</span><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation-de-la-fonction-rquery-summary">Utilisation de la fonction rquery.summary</h2><br />
<br /><br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-description-statistiques-d-une-table-de-donnees">Description statistiques d'une table de donn?es</h3><br />
<br />
<span class="success">Le fichier t?l?charg? contient 7 variables (7 colonnes de donn?es) dont 2 correspondent ? des colonnes groupes : colonne <strong>Competition</strong> et <strong>Medaille</strong>.<br />
</span><br />
<br />
Voici le code:<br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;">&nbsp;
<span style="color: #0000FF; font-weight: bold;">rquery.<span style="">summary</span></span><span style="color: #080;">&#40;</span><span style="color: #080;">&#41;</span> 
&nbsp;</pre></pre></div><br />
<br />
R vous demandera d'indiquer le fichier contenant les donn?es. Indiquer le chemin du fichier que vous venez de t?l?charger.<br />
<br />
Le r?sultat contenant les donn?es ci-dessous est montr? ? l'?cran :<br />
<br />
<a href="https://www.sthda.com/french/french/upload/datatablesummary.png"><img src="https://www.sthda.com/french/french/upload/mini_datatablesummary.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">Cliquez pour agrandir</span><br />
<br />
Le minimum, le premier quartile, la m?diane, le troisi?me quartile, le max et la moyenne sont montr?s pour chaque variable.<br />
<br />
<span class="notice"><br />
Un fichier est ?galement enregistr? et ouvert automatiquement ? la fin de l'ex?cution de la fonction.<br />
Le fichier se trouve dans le dossier Result/Statistics<br />
</span><br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-description-statistique-d-une-variable-de-donnees">Description statistique d'une variable de donn?es</h2><br />
<br />
Il suffit d'indiquer le nom de la variable d'int?r?t de la mani?re suivante.<br />
<br />
Soit la colonne <strong>Poids</strong>, la variable d'int?r?t.<br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;">&nbsp;
<span style="color: #0000FF; font-weight: bold;">rquery.<span style="">summary</span></span><span style="color: #080;">&#40;</span>varName<span style="color: #080;">=</span><span style="color: #ff0000;">"Poids"</span><span style="color: #080;">&#41;</span> 
&nbsp;</pre></pre></div><br />
<br />
Le r?sultat est le suivant:<br />
<br />
<a href="https://www.sthda.com/french/french/upload/varsummary.png"><img src="https://www.sthda.com/french/french/upload/mini_varsummary.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">Cliquez pour agrandir</span><br />
<br />
<span class="notice"><br />
0% correspond au minimum<br />
100% correspond au maximum<br />
</span><br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-description-statistique-d-une-variable-de-donnees-en-fonction-du-groupe">Description statistique d'une variable de donn?es en fonction du groupe</h2><br />
<br />
Lorsque le nom du groupe est indiqu?, la description statistique est faite pour chacun des groupes<br />
<br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;">&nbsp;
<span style="color: #0000FF; font-weight: bold;">rquery.<span style="">summary</span></span><span style="color: #080;">&#40;</span>varName<span style="color: #080;">=</span><span style="color: #ff0000;">"Poids"</span>, grpName<span style="color: #080;">=</span><span style="color: #ff0000;">"Competition"</span><span style="color: #080;">&#41;</span> 
&nbsp;</pre></pre></div><br />
<br />
<br />
Ci-dessous le r?sultat:<br />
<br />
<a href="https://www.sthda.com/french/french/upload/varsummary_group.png"><img src="https://www.sthda.com/french/french/upload/mini_varsummary_group.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">Cliquez pour agrandir</span><br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisateur-avance">Utilisateur avanc?</h2><br />
<br />
<a href="https://www.sthda.com/french/french/wiki/rquery-summary">rquery.summary</a>]]></description>
			<pubDate>Sun, 21 Aug 2011 18:25:45 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[Statistiques]]></title>
			<link>https://www.sthda.com/french/wiki/statistiques</link>
			<guid>https://www.sthda.com/french/wiki/statistiques</guid>
			<description><![CDATA[Statistiques]]></description>
			<pubDate>Sun, 21 Aug 2011 11:37:52 +0200</pubDate>
			
		</item>
		
	</channel>
</rss>
