<?xml version="1.0" encoding="UTF-8" ?>
<!-- RSS generated by PHPBoost on Wed, 22 Apr 2026 03:09:51 +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/14" rel="self" type="application/rss+xml"/>
		<link>https://www.sthda.com</link>
		<description><![CDATA[Derniers articles de la catégorie Graphique Rquery]]></description>
		<copyright>(C) 2005-2026 PHPBoost</copyright>
		<language>fr</language>
		<generator>PHPBoost</generator>
		
		
		<item>
			<title><![CDATA[Boxplot avec RQuery]]></title>
			<link>https://www.sthda.com/french/wiki/boxplot-avec-rquery</link>
			<guid>https://www.sthda.com/french/wiki/boxplot-avec-rquery</guid>
			<description><![CDATA[Le but de ce tuto est de vous montrer comment faire un boxplot avec RQuery.<br />
La fonction ? utiliser s'appelle <strong>rquery.boxplot</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 />
T?l?charger un exemple de fichier en cliquant   <a href="https://www.sthda.com/french/french/upload/boxplot_format.txt">ici</a><br />
<br />
 <img src="https://www.sthda.com/french/french/templates/sthda_design/images/important.png" alt="" />Enregistrer le fichier au format .txt tabulation.<br />
Le fichier contient une colonne appel?e variable et une autre appel?e Group<br />
<span class="notice"><br />
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 />
</span><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation-de-la-fonction-rquery-boxplot">Utilisation de la fonction rquery.boxplot</h2><br />
<br /><br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-un-boxplot-simple">Un boxplot simple</h3><br />
<br /><br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">boxplot</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span>, grpName<span style="color: #080;">=</span><span style="color: #ff0000;">"Group"</span><span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
La fonction prend comme param?tre le nom de la variable d'int?r?t dans le fichier (ici 'variable') et le nom de l'ent?te de la colonne indiquant le groupe (ici 'Group').<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 />
Ci-dessous le graphique g?n?r?:<br />
<a href="https://www.sthda.com/french/french/upload/boxplot_gray.png"> <img src="https://www.sthda.com/french/french/upload/mini_boxplot_gray.png" alt="" /> </a><br />
<span style="font-size: 12px;">cliquez pour agrandir</span><br />
<br />
Les 2 petits ronds au niveau des groupes C et D correspondent ? des valeurs atypiques.<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-cacher-les-valeurs-atypiques-ou-extremes">Cacher les valeurs atypiques (ou extr?mes)</h3><br />
<br /><br />
Pour cacher les valeurs atypiques on fournit ? la fonction le param?tre <strong>outline </strong> en lui attribuant la valeur <strong>FALSE</strong><br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">boxplot</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span>, grpName<span style="color: #080;">=</span><span style="color: #ff0000;">"Group"</span>, outline <span style="color: #080;">=</span>FALSE<span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
<a href="https://www.sthda.com/french/french/upload/boxplot_without_outline.png"> <img src="https://www.sthda.com/french/french/upload/mini_boxplot_without_outline.png" alt="" /> </a><br />
<span style="font-size: 12px;">cliquez pour agrandir</span><br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-afficher-chaque-point-chaque-valeur-sur-le-boxplot">Afficher chaque point (chaque valeur) sur le boxplot</h3><br />
<br /><br />
Utilisation de l'option <strong>marqueur=TRUE</strong><br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">boxplot</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span>, grpName<span style="color: #080;">=</span><span style="color: #ff0000;">"Group"</span>, marqueur<span style="color: #080;">=</span>TRUE<span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
<a href="https://www.sthda.com/french/french/upload/boxplot_marqueur.png"> <img src="https://www.sthda.com/french/french/upload/mini_boxplot_marqueur.png" alt="" /> </a><br />
<span style="font-size: 12px;">cliquez pour agrandir</span><br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-coloration-du-boxplot-en-fonction-du-groupe">Coloration du boxplot en fonction du groupe</h3><br />
<br />
Utilisation de l'option <strong>colorieParGrpe=TRUE</strong><br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">boxplot</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span>, grpName<span style="color: #080;">=</span><span style="color: #ff0000;">"Group"</span>, marqueur<span style="color: #080;">=</span>TRUE, colorieParGrpe<span style="color: #080;">=</span>TRUE<span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
<a href="https://www.sthda.com/french/french/upload/boxplot_colore.png"> <img src="https://www.sthda.com/french/french/upload/mini_boxplot_colore.png" alt="" /> </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 /><br />
<a href="https://www.sthda.com/french/french/wiki/rquery-boxplot">rquery.boxplot</a>]]></description>
			<pubDate>Sun, 26 Oct 2014 19:06:48 +0100</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[Q-Q plot avec RQuery]]></title>
			<link>https://www.sthda.com/french/wiki/q-q-plot-avec-rquery</link>
			<guid>https://www.sthda.com/french/wiki/q-q-plot-avec-rquery</guid>
			<description><![CDATA[La fonction ? utiliser s'appelle <strong>rquery.qqplot</strong><br />
<br />
Q-Q plot : quantile-quantile plot (tra?age des quantiles d'une distribution versus les quantiles d'une autre distribution).<br />
<br />
qqplot : permet de comparer graphiquement les distributions de 2 ?chantillons pour savoir si elles sont identiques. Si les points sont align?s, les 2 ?chantillons ont des distributions similaires, sinon elles ne le sont pas .<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 />
T?l?charger un exemple de fichier en cliquant   <a href="https://www.sthda.com/french/french/upload/qqplot_format.txt">ici</a><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 />
Le fichier contient une colonne nom et 3 colonnes de variables (var1, var2, var3)<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 />
</span><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation-de-la-fonction-rquery-qqplot">Utilisation de la fonction rquery.qqplot </h2><br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-comparaison-d-une-distribution-a-une-distribution-theorique">Comparaison d'une distribution ? une distribution th?orique</h3><br />
<br /><br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">qqplot</span></span><span style="color: #080;">&#40;</span>xName<span style="color: #080;">=</span><span style="color: #ff0000;">"var1"</span><span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
La fonction prend comme param?tre le nom de la variable d'int?r?t dans le fichier (ici 'var1')<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 />
Ci-dessous le graphique g?n?r?:<br />
<br />
<a href="https://www.sthda.com/french/french/upload/qqplot_norm.png"><img src="https://www.sthda.com/french/french/upload/mini_qqplot_norm.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">Cliquez pour agrandir</span><br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-comparaison-de-2-distributions">Comparaison de 2 distributions </h3><br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">qqplot</span></span><span style="color: #080;">&#40;</span>xName<span style="color: #080;">=</span><span style="color: #ff0000;">"var1"</span>, yName<span style="color: #080;">=</span><span style="color: #ff0000;">"var2"</span><span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
<a href="https://www.sthda.com/french/french/upload/qqplot_2var.png"><img src="https://www.sthda.com/french/french/upload/mini_qqplot_2var.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">Cliquez pour agrandir</span><br />
<br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisateur-avance">Utilisateur avanc?</h2><br />
<br /><br />
<a href="https://www.sthda.com/french/french/wiki/rquery-qqplot">rquery.qqplot</a>]]></description>
			<pubDate>Thu, 18 Aug 2011 11:12:50 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[Nuage de points avec RQuery]]></title>
			<link>https://www.sthda.com/french/wiki/nuage-de-points-avec-rquery</link>
			<guid>https://www.sthda.com/french/wiki/nuage-de-points-avec-rquery</guid>
			<description><![CDATA[La fonction ? utiliser s'appelle <strong>rquery.scatterplot</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 />
T?l?charger un exemple de fichier en cliquant   <a href="https://www.sthda.com/french/french/upload/graphique3d_format.txt">ici</a><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 />
Le fichier contient une colonne appel?e <strong>nom</strong> et 4 autres colonnes <strong>Long.jump</strong>, <strong>1500m</strong>    , <strong>Javeline</strong>, <strong>competition</strong>. La colonne competition correspond aux groupes<br />
<span class="notice"><br />
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 />
</span><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation-de-la-fonction-rquery-scatterplot">Utilisation de la fonction rquery.scatterplot</h2><br />
<br /><br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-nuage-de-point-simple">Nuage de point simple</h3><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;
&nbsp;
<span style="color: #0000FF; font-weight: bold;">rquery.<span style="">scatterplot</span></span><span style="color: #080;">&#40;</span>xName<span style="color: #080;">=</span><span style="color: #ff0000;">"Long.jump"</span>,  yName<span style="color: #080;">=</span><span style="color: #ff0000;">"Javeline"</span><span style="color: #080;">&#41;</span>
&nbsp;
&nbsp;</pre></pre></div><br />
<br />
La fonction prend comme param?tre le nom des variables x et y.<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 />
Ci-dessous le graphique g?n?r?:<br />
<br />
<a href="https://www.sthda.com/french/french/upload/scatterplot.png"> <img src="https://www.sthda.com/french/french/upload/mini_scatterplot.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">cliquez pour agrandir</span><br />
<br />
Le graphique contient :<br />
<ul class="formatter-ul">
    <li class="formatter-li"> Le nuage de point
    </li><li class="formatter-li"> La droite de r?gression lin?aire en vert
    </li><li class="formatter-li"> L'?tendue en pointill? (tiret rouge)
    </li><li class="formatter-li"> La courbe de lissage des donn?es (trait plein, rouge)<br />
   <br />
</li></ul><br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-affichage-du-nom-des-points">Affichage du nom des points</h3><br />
<br />
Utilisation de l'option <strong>identify=TRUE</strong> et<strong> identifyName="nom"</strong>; "nom" est le nom de la colonne correspondant aux ?tiquettes des points.<br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;">&nbsp;
&nbsp;
<span style="color: #0000FF; font-weight: bold;">rquery.<span style="">scatterplot</span></span><span style="color: #080;">&#40;</span>xName<span style="color: #080;">=</span><span style="color: #ff0000;">"Long.jump"</span>, yName<span style="color: #080;">=</span><span style="color: #ff0000;">"Javeline"</span>,  identifyPlot<span style="color: #080;">=</span>TRUE, identifyName<span style="color: #080;">=</span><span style="color: #ff0000;">"nom"</span><span style="color: #080;">&#41;</span>
&nbsp;
&nbsp;</pre></pre></div><br />
<br />
<br />
<a href="https://www.sthda.com/french/french/upload/scatterplot_identify.png"> <img src="https://www.sthda.com/french/french/upload/mini_scatterplot_identify.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">cliquez pour agrandir</span><br />
<br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-ellipse-de-concentration">Ellipse de concentration</h3><br />
<br /><br />
Utilisation de l'option <strong>ellipse=TRUE</strong><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;
&nbsp;
<span style="color: #0000FF; font-weight: bold;">rquery.<span style="">scatterplot</span></span><span style="color: #080;">&#40;</span>xName<span style="color: #080;">=</span><span style="color: #ff0000;">"Long.jump"</span>, yName<span style="color: #080;">=</span><span style="color: #ff0000;">"Javeline"</span>,  identifyPlot<span style="color: #080;">=</span>TRUE, identifyName<span style="color: #080;">=</span><span style="color: #ff0000;">"nom"</span>, ellipse<span style="color: #080;">=</span>TRUE<span style="color: #080;">&#41;</span>
&nbsp;
&nbsp;</pre></pre></div><br />
<br />
<a href="https://www.sthda.com/french/french/upload/scatterplot_ellipse.png"> <img src="https://www.sthda.com/french/french/upload/mini_scatterplot_ellipse.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">cliquez pour agrandir</span><br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-cacher-l-etendue-et-la-courbe-de-lissage">Cacher l'?tendue et la courbe de lissage</h3><br />
<br /><br />
pour cacher l'?tendue, utiliser l'option <strong>spread=FALSE</strong><br />
pour cacher la courbe de lissage, utiliser l'option <strong>smooth=FALSE</strong><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;
&nbsp;
<span style="color: #0000FF; font-weight: bold;">rquery.<span style="">scatterplot</span></span><span style="color: #080;">&#40;</span>xName<span style="color: #080;">=</span><span style="color: #ff0000;">"Long.jump"</span>, yName<span style="color: #080;">=</span><span style="color: #ff0000;">"Javeline"</span>,  <span style="color: #0000FF; font-weight: bold;">smooth</span><span style="color: #080;">=</span>FALSE, spread<span style="color: #080;">=</span>FALSE<span style="color: #080;">&#41;</span>
&nbsp;
&nbsp;</pre></pre></div><br />
<br />
<br />
<a href="https://www.sthda.com/french/french/upload/scatterplot_simple.png"> <img src="https://www.sthda.com/french/french/upload/mini_scatterplot_simple.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">cliquez pour agrandir</span><br />
<br />
pour cacher la droite de r?gression lin?aire, utilisez l'option <strong>reg.line=""</strong><br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisateur-avance">Utilisateur avanc?</h2><br />
<br /><br />
<a href="https://www.sthda.com/french/french/wiki/rquery-scatterplot">rquery.scatterplot</a>]]></description>
			<pubDate>Thu, 18 Aug 2011 11:11:58 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[Histogramme avec RQuery]]></title>
			<link>https://www.sthda.com/french/wiki/histogramme-avec-rquery</link>
			<guid>https://www.sthda.com/french/wiki/histogramme-avec-rquery</guid>
			<description><![CDATA[La fonction ? utiliser s'appelle <strong>rquery.hist</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 />
T?l?charger un exemple de fichier en cliquant   <a href="https://www.sthda.com/french/french/upload/boxplot_format.txt">ici</a><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 />
Le fichier contient une colonne appel?e variable et une autre appel?e Nom<br />
<span class="notice"><br />
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 />
</span><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation-de-la-fonction-rquery-hist">Utilisation de la fonction rquery.hist </h2><br />
<br /><br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-histogramme-de-distribution">Histogramme de distribution</h3><br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">hist</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span><span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
La fonction prend comme param?tre le nom de la variable d'int?r?t dans le fichier (ici 'variable')<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 />
Ci-dessous le graphique g?n?r?:<br />
<br />
<img src="https://www.sthda.com/french/french/upload/hist.png" alt="" class="valign_" /><br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-affichage-de-la-courbe-normale">Affichage de la courbe normale</h3><br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">hist</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span>, normal_curve<span style="color: #080;">=</span>TRUE<span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
<img src="https://www.sthda.com/french/french/upload/hist_normal_curve.png" alt="" class="valign_" /><br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisateur-avance">Utilisateur avanc?</h2><br />
<br /><br />
<a href="https://www.sthda.com/french/french/wiki/rquery-hist">rquery.hist</a>]]></description>
			<pubDate>Thu, 18 Aug 2011 10:45:12 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[Graphique 3D avec RQuery]]></title>
			<link>https://www.sthda.com/french/wiki/graphique-3d-avec-rquery</link>
			<guid>https://www.sthda.com/french/wiki/graphique-3d-avec-rquery</guid>
			<description><![CDATA[La fonction ? utiliser s'appelle <strong>rquery.scatter3d</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 />
T?l?charger un exemple de fichier en cliquant   <a href="https://www.sthda.com/french/french/upload/graphique3d_format.txt">ici</a><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 />
Le fichier contient une colonne appel?e <strong>nom</strong> et 4 autres colonnes <strong>Long.jump</strong>, <strong>1500m</strong>    , <strong>Javeline</strong>, <strong>competition</strong>. La colonne competition correspond aux groupes<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 />
</span><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation-de-la-fonction-rquery-scatter3d">Utilisation de la fonction rquery.scatter3d</h2><br />
<br /><br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-un-graphique-3d-simple">Un graphique 3D simple</h3><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;
&nbsp;
<span style="color: #0000FF; font-weight: bold;">rquery.<span style="">scatter3d</span></span><span style="color: #080;">&#40;</span>xName<span style="color: #080;">=</span><span style="color: #ff0000;">"Long.jump"</span>, yName<span style="color: #080;">=</span><span style="color: #ff0000;">"1500m"</span>, zName<span style="color: #080;">=</span><span style="color: #ff0000;">"Javeline"</span><span style="color: #080;">&#41;</span>
&nbsp;
&nbsp;</pre></pre></div><br />
<br />
La fonction prend comme param?tre le nom des variables x, y et z.<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 />
Ci-dessous le graphique g?n?r?:<br />
<br />
<a href="https://www.sthda.com/french/french/upload/3d.png"> <img src="https://www.sthda.com/french/french/upload/mini_3d.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">cliquez pour agrandir</span><br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-affichage-de-la-surface-des-moindres-carres-lineaires">Affichage de la surface des moindres carr?s lin?aires</h3><br />
<br /><br />
On fournit ? la fonction le param?tre <strong>surface</strong> en lui attribuant la valeur <strong>TRUE</strong><br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;">&nbsp;
&nbsp;
<span style="color: #0000FF; font-weight: bold;">rquery.<span style="">scatter3d</span></span><span style="color: #080;">&#40;</span>xName<span style="color: #080;">=</span><span style="color: #ff0000;">"Long.jump"</span>, yName<span style="color: #080;">=</span><span style="color: #ff0000;">"1500m"</span>, zName<span style="color: #080;">=</span><span style="color: #ff0000;">"Javeline"</span>, surface<span style="color: #080;">=</span>TRUE<span style="color: #080;">&#41;</span>
&nbsp;
&nbsp;</pre></pre></div><br />
<br />
<br />
<a href="https://www.sthda.com/french/french/upload/3d_surface.png"> <img src="https://www.sthda.com/french/french/upload/mini_3d_surface.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">cliquez pour agrandir</span><br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-affichage-de-l-ellipse-de-concentration-des-donnees">Affichage de l'ellipse de concentration des donn?es</h3><br />
<br /><br />
Utilisation de l'option <strong>ellipsoid=TRUE</strong><br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;">&nbsp;
&nbsp;
<span style="color: #0000FF; font-weight: bold;">rquery.<span style="">scatter3d</span></span><span style="color: #080;">&#40;</span>xName<span style="color: #080;">=</span><span style="color: #ff0000;">"Long.jump"</span>, yName<span style="color: #080;">=</span><span style="color: #ff0000;">"1500m"</span>, zName<span style="color: #080;">=</span><span style="color: #ff0000;">"Javeline"</span>, surface<span style="color: #080;">=</span>TRUE, ellipsoid<span style="color: #080;">=</span>TRUE<span style="color: #080;">&#41;</span>
&nbsp;
&nbsp;</pre></pre></div><br />
<br />
<br />
<a href="https://www.sthda.com/french/french/upload/3d_ellipsoid.png"> <img src="https://www.sthda.com/french/french/upload/mini_3d_ellipsoid.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">cliquez pour agrandir</span><br />
<br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-graphique-3d-en-fonction-du-groupe">Graphique 3D en fonction du groupe</h3><br />
<br />
Si le fichier contient une colonne correspondant aux groupes (ce qui est le cas ici), utilisation de l'option <strong>grpName</strong>. Dans l'exemple du fichier t?l?charg? <strong>grpName="competition"</strong>.<br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;">&nbsp;
&nbsp;
<span style="color: #0000FF; font-weight: bold;">rquery.<span style="">scatter3d</span></span><span style="color: #080;">&#40;</span>xName<span style="color: #080;">=</span><span style="color: #ff0000;">"Long.jump"</span>, yName<span style="color: #080;">=</span><span style="color: #ff0000;">"1500m"</span>, zName<span style="color: #080;">=</span><span style="color: #ff0000;">"Javeline"</span>,  ellipsoid<span style="color: #080;">=</span>TRUE, grpName<span style="color: #080;">=</span><span style="color: #ff0000;">"competition"</span><span style="color: #080;">&#41;</span>
&nbsp;
&nbsp;</pre></pre></div><br />
<br />
<br />
<a href="https://www.sthda.com/french/french/upload/3d_group.png"> <img src="https://www.sthda.com/french/french/upload/mini_3d_group.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">cliquez pour agrandir</span><br />
<br />
Dans le code ci-dessous, j'ai enlev? l'option surface=TRUE<br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-affichage-du-nom-des-points">Affichage du nom des points</h3><br />
<br />
Utilisation de l'option <strong>identify=TRUE</strong> et<strong> identifyName="nom"</strong>; "nom" est le nom de la colonne correspondant aux ?tiquettes des points.<br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;">&nbsp;
&nbsp;
<span style="color: #0000FF; font-weight: bold;">rquery.<span style="">scatter3d</span></span><span style="color: #080;">&#40;</span>xName<span style="color: #080;">=</span><span style="color: #ff0000;">"Long.jump"</span>, yName<span style="color: #080;">=</span><span style="color: #ff0000;">"1500m"</span>, zName<span style="color: #080;">=</span><span style="color: #ff0000;">"Javeline"</span>,  ellipsoid<span style="color: #080;">=</span>TRUE, grpName<span style="color: #080;">=</span><span style="color: #ff0000;">"competition"</span>, identifyPlot<span style="color: #080;">=</span>TRUE, identifyName<span style="color: #080;">=</span><span style="color: #ff0000;">"nom"</span><span style="color: #080;">&#41;</span>
&nbsp;
&nbsp;</pre></pre></div><br />
<br />
<br />
<a href="https://www.sthda.com/french/french/upload/3d_identify.png"> <img src="https://www.sthda.com/french/french/upload/mini_3d_identify.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">cliquez pour agrandir</span><br />
<br />
<br />
<br />
--- Affichage d'un cadre autour du graphique---<br />
<br />
Utilisation du param?tre <strong>bbox=TRUE</strong> .<br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;">&nbsp;
&nbsp;
<span style="color: #0000FF; font-weight: bold;">rquery.<span style="">scatter3d</span></span><span style="color: #080;">&#40;</span>xName<span style="color: #080;">=</span><span style="color: #ff0000;">"Long.jump"</span>, yName<span style="color: #080;">=</span><span style="color: #ff0000;">"1500m"</span>, zName<span style="color: #080;">=</span><span style="color: #ff0000;">"Javeline"</span>,  ellipsoid<span style="color: #080;">=</span>TRUE, grpName<span style="color: #080;">=</span><span style="color: #ff0000;">"competition"</span>, identifyPlot<span style="color: #080;">=</span>TRUE, identifyName<span style="color: #080;">=</span><span style="color: #ff0000;">"nom"</span>, bbox<span style="color: #080;">=</span>TRUE<span style="color: #080;">&#41;</span>
&nbsp;
&nbsp;</pre></pre></div><br />
<br />
<br />
<a href="https://www.sthda.com/french/french/upload/3d_bbox.png"> <img src="https://www.sthda.com/french/french/upload/mini_3d_bbox.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">cliquez pour agrandir</span><br />
<br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisateur-avance">Utilisateur avanc?</h2><br />
<br /><br />
<a href="https://www.sthda.com/french/french/wiki/rquery-scatter3d">rquery.scatter3d</a>]]></description>
			<pubDate>Thu, 18 Aug 2011 10:44:49 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[Graphe en camembert avec RQuery]]></title>
			<link>https://www.sthda.com/french/wiki/graphe-en-camembert-avec-rquery</link>
			<guid>https://www.sthda.com/french/wiki/graphe-en-camembert-avec-rquery</guid>
			<description><![CDATA[La fonction ? utiliser s'appelle <strong>rquery.piechart</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 />
T?l?charger un exemple de fichier en cliquant   <a href="https://www.sthda.com/french/french/upload/piechart.txt">ici</a><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 />
Le fichier contient une colonne appel?e variable et une autre appel?e Nom<br />
<span class="notice"><br />
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 />
</span><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation-de-la-fonction-rquery-piechart">Utilisation de la fonction rquery.piechart</h2><br />
<br /><br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-graphique-simple">Graphique simple</h3><br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">piechart</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span><span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
La fonction prend comme param?tre le nom de la variable d'int?r?t dans le fichier (ici 'variable')<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 />
Ci-dessous le graphique g?n?r?:<br />
<br />
<img src="https://www.sthda.com/french/french/upload/piechart.png" alt="" class="valign_" /><br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-affichage-des-etiquettes">Affichage des ?tiquettes</h3><br />
<br />
utilisation du param?tre <strong>labels</strong>. Dans l'exemple du fichier que vous avez t?l?charg? <strong>labels="Nom"</strong> c'est ? dire la colonne 'nom' du fichier.<br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">piechart</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span>, <span style="color: #0000FF; font-weight: bold;">labels</span><span style="color: #080;">=</span><span style="color: #ff0000;">"Nom"</span><span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
<img src="https://www.sthda.com/french/french/upload/piechart_label.png" alt="" class="valign_" /><br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-graphique-3d">Graphique 3D</h3><br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">barplot</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span>, pie3d<span style="color: #080;">=</span>TRUE</pre></pre></div><br />
<br />
<img src="https://www.sthda.com/french/french/upload/piechart3d.png" alt="" class="valign_" /><br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisateur-avance">Utilisateur avanc?</h2><br />
<br /><br />
<a href="https://www.sthda.com/french/french/wiki/rquery-piechart">rquery.piechart</a>]]></description>
			<pubDate>Thu, 18 Aug 2011 10:44:10 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[Graphe en barre avec RQuery]]></title>
			<link>https://www.sthda.com/french/wiki/graphe-en-barre-avec-rquery</link>
			<guid>https://www.sthda.com/french/wiki/graphe-en-barre-avec-rquery</guid>
			<description><![CDATA[La fonction ? utiliser s'appelle <strong>rquery.barplot</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 />
T?l?charger un exemple de fichier en cliquant   <a href="https://www.sthda.com/french/french/upload/boxplot_format.txt">ici</a><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 />
Le fichier contient une colonne appel?e variable et une autre appel?e Group<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 />
</span><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation-de-la-fonction-rquery-barplot">Utilisation de la fonction rquery.barplot</h2><br />
<br /><br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-graphique-simple">Graphique simple</h3><br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">barplot</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span><span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
La fonction prend comme param?tre le nom de la variable d'int?r?t dans le fichier (ici 'variable')<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 />
Ci-dessous le graphique g?n?r?:<br />
<br />
<a href="https://www.sthda.com/french/french/upload/barplot.png"> <img src="https://www.sthda.com/french/french/upload/mini_barplot.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">cliquez pour agrandir</span><br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-trie-des-donnees">Trie des donn?es</h3><br />
<br />
On peut trier les donn?es avec le param?tre <strong>y.sort=TRUE</strong>. Pour colorer chaque barre en fonction de l'intensit? de la valeur, il faut utiliser le param?tre <strong>colEachBar=TRUE</strong>.<br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">barplot</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span>, y.<span style="">sort</span><span style="color: #080;">=</span>TRUE, colEachBar<span style="color: #080;">=</span>TRUE<span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
ci-dessous le r?sultat:<br />
<br />
<a href="https://www.sthda.com/french/french/upload/barplot_sorted_colored.png"> <img src="https://www.sthda.com/french/french/upload/mini_barplot_sorted_colored.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">cliquez pour agrandir</span><br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-barplot-en-fonction-du-group">Barplot en fonction du group</h3><br />
<br />
Comme notre fichier contient une colonne 'Group', nous allons faire le barplot en fonction du groupe.<br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">barplot</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span>, grpName<span style="color: #080;">=</span><span style="color: #ff0000;">"Group"</span><span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
<a href="https://www.sthda.com/french/french/upload/barplot_group.png"> <img src="https://www.sthda.com/french/french/upload/mini_barplot_group.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">cliquez pour agrandir</span><br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-affichage-des-etiquettes">Affichage des ?tiquettes</h3><br />
<br />
utilisation des param?tres <strong>etiquette=TRUE</strong> et <strong>etiquetteName</strong>. etiquetteName correspond au nom de la colonne contenant l&#8217;?tiquette des barres. Dans l'exemple du fichier que vous avez t?l?charg? <strong>etiquetteName="Nom"</strong> c'est ? dire la colonne 'nom' du fichier.<br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">barplot</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span>, grpName<span style="color: #080;">=</span><span style="color: #ff0000;">"Group"</span>, etiquette<span style="color: #080;">=</span>TRUE, etiquetteName<span style="color: #080;">=</span><span style="color: #ff0000;">"Nom"</span><span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
<a href="https://www.sthda.com/french/french/upload/barplot_etiquette.png"> <img src="https://www.sthda.com/french/french/upload/mini_barplot_etiquette.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">cliquez pour agrandir</span><br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-affichage-de-la-legende">Affichage de la l?gende</h3><br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">barplot</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span>, grpName<span style="color: #080;">=</span><span style="color: #ff0000;">"Group"</span>, <span style="color: #0000FF; font-weight: bold;">legend</span><span style="color: #080;">=</span>TRUE<span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
<a href="https://www.sthda.com/french/french/upload/barplot_legend.png"> <img src="https://www.sthda.com/french/french/upload/mini_barplot_legend.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 /><br />
<a href="https://www.sthda.com/french/french/wiki/rquery-barplot">rquery.barplot</a>]]></description>
			<pubDate>Thu, 18 Aug 2011 10:43:24 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[Graphe en bande avec RQuery]]></title>
			<link>https://www.sthda.com/french/wiki/graphe-en-bande-avec-rquery</link>
			<guid>https://www.sthda.com/french/wiki/graphe-en-bande-avec-rquery</guid>
			<description><![CDATA[La fonction ? utiliser s'appelle <strong>rquery.stripchart</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 />
T?l?charger un exemple de fichier en cliquant   <a href="https://www.sthda.com/french/french/upload/boxplot_format.txt">ici</a><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 />
Le fichier contient une colonne appel?e variable et une autre appel?e Group<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 />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation-de-la-fonction-rquery-stripchart">Utilisation de la fonction rquery.stripchart</h2><br />
<br /><br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">stripchart</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span>, grpName<span style="color: #080;">=</span><span style="color: #ff0000;">"Group"</span><span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
La fonction prend comme param?tre le nom de la variable d'int?r?t dans le fichier (ici 'variable') et le nom de l'ent?te de la colonne indiquant le groupe (ici 'Group').<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 />
Ci-dessous le graphique g?n?r?:<br />
<br />
<a href="https://www.sthda.com/french/french/upload/stripchart_stack.png"> <img src="https://www.sthda.com/french/french/upload/mini_stripchart_stack.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">cliquez pour agrandir</span><br />
<span class="notice"><br />
Pour d?caler les points correspondant aux valeurs dupliqu?es, on utilise le param?tre <strong>method=jitter</strong><br />
</span><br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">stripchart</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span>, grpName<span style="color: #080;">=</span><span style="color: #ff0000;">"Group"</span>, method<span style="color: #080;">=</span><span style="color: #ff0000;">"jitter"</span><span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
<a href="https://www.sthda.com/french/french/upload/stripchart_jitter.png"> <img src="https://www.sthda.com/french/french/upload/mini_stripchart_jitter.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">cliquez pour agrandir</span><br />
<br />
Repr?senter les marqueurs par des points ? la place des carr?s :<br />
param?tre <strong>pch=19</strong><br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">stripchart</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span>, grpName<span style="color: #080;">=</span><span style="color: #ff0000;">"Group"</span>, method<span style="color: #080;">=</span><span style="color: #ff0000;">"jitter"</span>, pch<span style="color: #080;">=</span><span style="color: #ff0000;">19</span><span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
<a href="https://www.sthda.com/french/french/upload/stripchart_point.png"> <img src="https://www.sthda.com/french/french/upload/mini_stripchart_point.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">cliquez pour agrandir</span><br />
<br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisateur-avance">Utilisateur avanc?</h2><br />
<br /><br />
<a href="https://www.sthda.com/french/french/wiki/rquery-stripchart">rquery.stripchart</a>]]></description>
			<pubDate>Thu, 18 Aug 2011 10:42:54 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[Graphe des moyennes avec RQuery]]></title>
			<link>https://www.sthda.com/french/wiki/graphe-des-moyennes-avec-rquery</link>
			<guid>https://www.sthda.com/french/wiki/graphe-des-moyennes-avec-rquery</guid>
			<description><![CDATA[Le but de ce tuto est de vous montrer comment faire un graphique des moyennes avec RQuery.<br />
La fonction ? utiliser s'appelle <strong>rquery.plotMeans</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 />
T?l?charger un exemple de fichier en cliquant   <a href="https://www.sthda.com/french/french/upload/boxplot_format.txt">ici</a><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 />
Le fichier contient une colonne appel?e variable et une autre appel?e Group<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 />
</span><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation-de-la-fonction-rquery-plotmeans">Utilisation de la fonction rquery.plotMeans</h2><br />
<br /><br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">plotMeans</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span>, grpName<span style="color: #080;">=</span><span style="color: #ff0000;">"Group"</span><span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
La fonction prend comme param?tre le nom de la variable d'int?r?t dans le fichier (ici 'variable') et le nom de l'ent?te de la colonne indiquant le groupe (ici 'Group').<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 />
La moyenne de chaque groupe est repr?sent?e par un gros point et les barres d'erreur sont montr?es.<br />
<br />
Ci-dessous le graphique g?n?r?:<br />
<br />
<a href="https://www.sthda.com/french/french/upload/plotmeans.png"> <img src="https://www.sthda.com/french/french/upload/mini_plotmeans.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 /><br />
<a href="https://www.sthda.com/french/french/wiki/rquery-plotmeans">rquery.plotMeans</a>]]></description>
			<pubDate>Thu, 18 Aug 2011 10:39:11 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[Courbe de densité avec RQuery]]></title>
			<link>https://www.sthda.com/french/wiki/courbe-de-densite-avec-rquery</link>
			<guid>https://www.sthda.com/french/wiki/courbe-de-densite-avec-rquery</guid>
			<description><![CDATA[La fonction ? utiliser s'appelle <strong>rquery.density</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 />
T?l?charger un exemple de fichier en cliquant   <a href="https://www.sthda.com/french/french/upload/boxplot_format.txt">ici</a><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 />
Le fichier contient une colonne appel?e variable et une autre appel?e Nom<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 />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation-de-la-fonction-rquery-density">Utilisation de la fonction rquery.density </h2><br />
<br /><br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-courbe-de-densite-simple">Courbe de densit? simple</h3><br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">density</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span><span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
La fonction prend comme param?tre le nom de la variable d'int?r?t dans le fichier (ici 'variable')<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 />
Ci-dessous le graphique g?n?r?:<br />
<br />
<a href="https://www.sthda.com/french/french/upload/density.png"><img src="https://www.sthda.com/french/french/upload/mini_density.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">Cliquez pour agrandir</span><br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-remplissage-de-la-courbe">Remplissage de la courbe </h3><br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">density</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span>, fill<span style="color: #080;">=</span>TRUE<span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
<a href="https://www.sthda.com/french/french/upload/density_fill.png"><img src="https://www.sthda.com/french/french/upload/mini_density_fill.png" alt="" class="valign_" /> </a><br />
<span style="font-size: 12px;">Cliquez pour agrandir</span><br />
<br />
<br />
<h3 class="formatter-title wiki-paragraph-3" id="paragraph-comparaison-de-groupes-avec-la-courbe-de-densite">Comparaison de groupes avec la courbe de densit?</h3><br />
<br />
Il faut indiquer le param?tre <strong>grpName</strong> ? la fonction. Ici, grpName est ?gal au nom de la colonne contenant les groupes<br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;"><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">density</span></span><span style="color: #080;">&#40;</span>yName<span style="color: #080;">=</span><span style="color: #ff0000;">"variable"</span>, grpName<span style="color: #080;">=</span><span style="color: #ff0000;">"Group"</span><span style="color: #080;">&#41;</span></pre></pre></div><br />
<br />
<a href="https://www.sthda.com/french/french/upload/density_grp.png"><img src="https://www.sthda.com/french/french/upload/mini_density_grp.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 /><br />
<a href="https://www.sthda.com/french/french/wiki/rquery-density">rquery.density</a>]]></description>
			<pubDate>Thu, 18 Aug 2011 10:38:39 +0200</pubDate>
			
		</item>
		
	</channel>
</rss>
