<?xml version="1.0" encoding="UTF-8" ?>
<!-- RSS generated by PHPBoost on Sat, 11 Apr 2026 02:18:42 +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/10" rel="self" type="application/rss+xml"/>
		<link>https://www.sthda.com</link>
		<description><![CDATA[Derniers articles de la catégorie Fonctions]]></description>
		<copyright>(C) 2005-2026 PHPBoost</copyright>
		<language>fr</language>
		<generator>PHPBoost</generator>
		
		
		<item>
			<title><![CDATA[rquery.read_file]]></title>
			<link>https://www.sthda.com/french/wiki/rquery-read-file</link>
			<guid>https://www.sthda.com/french/wiki/rquery-read-file</guid>
			<description><![CDATA[<h2 class="formatter-title wiki-paragraph-2" id="paragraph-description">Description</h2><br />
<br />
Importation des donn?es contenues dans un fichier sous forme de matrice<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation">Utilisation</h2><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="">read_file</span></span><span style="color: #080;">&#40;</span><span style="color: #0000FF; font-weight: bold;">file</span><span style="color: #080;">=</span>NULL, header<span style="color: #080;">=</span>TRUE, <span style="color: #0000FF; font-weight: bold;">row.<span style="">names</span></span><span style="color: #080;">=</span><span style="color: #ff0000;">1</span>, <span style="color: #0000FF; font-weight: bold;">data.<span style="">frame</span></span><span style="color: #080;">=</span><span style="color: #0000FF; font-weight: bold;">F</span>,...<span style="color: #080;">&#41;</span>
&nbsp;</pre></pre></div><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-valeurs">Valeurs</h2><br />
<br />
Renvoie une matrice<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-exemple-d-utilisation">Exemple d'utilisation</h2><br />
<br />
<span class="formatter-code">Code R :</span><div class="code"><pre style="display:inline;"><pre class="r" style="font-family:monospace;">&nbsp;
mydata<span style="color: #080;"><-</span><span style="color: #0000FF; font-weight: bold;">rquery.<span style="">read_file</span></span> <span style="color: #080;">&#40;</span><span style="color: #080;">&#41;</span><span style="color: #228B22;">#R vous demandera le chemin du fichier ? importer</span>
mydata <span style="color: #228B22;">#affichage des donn?es</span>
&nbsp;</pre></pre></div>]]></description>
			<pubDate>Sun, 09 Dec 2012 16:27:03 +0100</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[rquery.chisq]]></title>
			<link>https://www.sthda.com/french/wiki/rquery-chisq</link>
			<guid>https://www.sthda.com/french/wiki/rquery-chisq</guid>
			<description><![CDATA[<h2 class="formatter-title wiki-paragraph-2" id="paragraph-description">Description</h2><br />
<br />
Cette fonction permet de faire un test de Khi2 et le test exact de Fisher<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation">Utilisation</h2><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="">chisq</span></span><span style="color: #080;">&#40;</span><span style="color: #0000FF; font-weight: bold;">data</span><span style="color: #080;">=</span>NULL, <span style="color: #0000FF; font-weight: bold;">file</span><span style="color: #080;">=</span><span style="color: #ff0000;">""</span>, rowVar, colVar, 
                       percent<span style="color: #080;">=</span><span style="color: #0000FF; font-weight: bold;">c</span><span style="color: #080;">&#40;</span><span style="color: #ff0000;">"noPercent"</span>, <span style="color: #ff0000;">"rowPercent"</span>, <span style="color: #ff0000;">"colPercent"</span><span style="color: #080;">&#41;</span>, <span style="color: #0000FF; font-weight: bold;">fisher.<span style="">test</span></span><span style="color: #080;">=</span>FALSE, chisq<span style="color: #080;">=</span>TRUE,
                       open.<span style="">outputFile</span><span style="color: #080;">=</span>TRUE,...<span style="color: #080;">&#41;</span>
&nbsp;
&nbsp;
&nbsp;</pre></pre></div><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-arguments">Arguments</h2><br />
<br />
<strong>data</strong> : matrice; les variables sont en colonne.<br />
<strong>file</strong> : fichier contenant les donn?es.<br />
Il faudrait indiquer ? la fonction soit data, soit file. Si data n'est pas indiqu?, alors la fonction demandera automatiquement d'indiquer le chemin d'un fichier txt tabulation contenant les donn?es.<br />
<br />
<strong>rowVar</strong> : Nom de la pr?mi?re variable (variable en ligne).<br />
<strong>colVar</strong> : Nom de la deuxi?me variable (variable en colonne).<br />
<strong>percent</strong>: permet de calculer le pourcentage par ligne ou par colonne.<br />
<strong>fisher.test</strong> : La fonction fait le test exact de fisher si valeur = TRUE.<br />
b]chisq[/b] : La fonction fait le test de khi2 si valeur = TRUE.<br />
<strong>open.outputFile</strong> : La fonction ouvre le fichier r?sultat ? la fin si valeur = TRUE<br />
<br />
<span class="notice"><br />
rowVar et colVar sont des variables qualitatives</span><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-valeurs">Valeurs</h2><br />
<br />
renvoie le r?sultat du test de khi2<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-voir-aussi">Voir aussi</h2><br />
<br />
<a href="https://www.sthda.com/french/french/wiki/test-de-khi2-et-test-exact-de-fisher-avec-rquery">Test de Khi2 et test exact de Fisher avec RQuery</a>]]></description>
			<pubDate>Tue, 23 Aug 2011 22:17:24 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[rquery.boxplot]]></title>
			<link>https://www.sthda.com/french/wiki/rquery-boxplot</link>
			<guid>https://www.sthda.com/french/wiki/rquery-boxplot</guid>
			<description><![CDATA[<h2 class="formatter-title wiki-paragraph-2" id="paragraph-description">Description</h2><br />
<br />
Fait un boxplot<br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation">Utilisation</h2><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="">boxplot</span></span><span style="color: #080;">&#40;</span><span style="color: #0000FF; font-weight: bold;">data</span><span style="color: #080;">=</span>NULL, <span style="color: #0000FF; font-weight: bold;">file</span><span style="color: #080;">=</span><span style="color: #ff0000;">""</span>, yName, grpName<span style="color: #080;">=</span>NULL, clusterName<span style="color: #080;">=</span>NULL, 
                         las<span style="color: #080;">=</span><span style="color: #ff0000;">1</span>, <span style="color: #0000FF; font-weight: bold;">log2</span><span style="color: #080;">=</span>FALSE, outline<span style="color: #080;">=</span>TRUE, marqueur<span style="color: #080;">=</span>FALSE, <span style="color: #0000FF; font-weight: bold;">jitter</span><span style="color: #080;">=</span><span style="color: #ff0000;">0.1</span>, colorieParGrpe<span style="color: #080;">=</span>FALSE, color<span style="color: #080;">=</span><span style="color: #ff0000;">"lightgray"</span>,
                         boxwex<span style="color: #080;">=</span><span style="color: #ff0000;">0.8</span>, horizontal<span style="color: #080;">=</span><span style="color: #0000FF; font-weight: bold;">F</span>, new.<span style="">plot</span><span style="color: #080;">=</span>FALSE, time.<span style="">sleep</span><span style="color: #080;">=</span><span style="color: #ff0000;">0</span>, ...<span style="color: #080;">&#41;</span>
&nbsp;</pre></pre></div><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-arguments">Arguments</h2><br />
<br />
<strong>data</strong> : matrice; les variables sont en colonne.<br />
<strong>file</strong> : fichier contenant les donn?es.<br />
Il faudrait indiquer ? la fonction soit data, soit file. Si data n'est pas indiqu?, alors la fonction demandera automatiquement d'indiquer le chemin d'un fichier txt tabulation contenant les donn?es.<br />
<br />
<strong>yName</strong> : Nom de la variable d&#8217;int?r?t pour laquelle on souhaite dessiner le boxplot<br />
<strong>grpName</strong> : Nom du groupe, si jamais il y en a.<br />
<strong>clusterName</strong> : Nom d'un cluster de groupes.<br />
<br />
<strong>las</strong>: style des ?tiquettes des axes (0: toujours parall?le aux axes; 1: toujours horizontal; 2: toujours perpendiculaire aux axes; 3:toujours vertical)<br />
<strong>log2</strong> : transformation logarithmique base 2 des donn?es si valeur ?gal ? TRUE<br />
<strong>outline </strong>: Affichage des valeurs atypiques si TRUE<br />
<strong>marqueur</strong> : Affichage de chaque point si TRUE.<br />
<strong>jitter</strong> : pour ?viter le chevauchement des points correspondant ? des valeurs identiques.<br />
<strong>colorieParGrpe</strong> : Une couleur est attribu?e ? chaque groupe si TRUE<br />
<strong>color</strong> : Couleur par d?faut du boxplot.<br />
<strong>boxwex</strong>: Largeur des bo?tes.<br />
<strong>horizontal</strong>: Boxplot horizontal si valeur ?gal TRUE.<br />
<strong>new.plot</strong>: Cr?ation d'une nouvelle zone de dessin si valeur = TRUE<br />
<strong>time.sleep</strong>: Met R en pause pendant un certain temps correspondant ? la valeur que vous aurez donn?e ? 'time.sleep' en seconde.<br />
<span class="notice">Ne modifiez pas la valeur de time.sleep</span><br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-voir-aussi">Voir aussi</h2><br />
<br />
<a href="https://www.sthda.com/french/french/wiki/boxplot-avec-rquery">Boxplot avec RQuery</a>]]></description>
			<pubDate>Tue, 23 Aug 2011 21:42:25 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[rquery.shapiro_test]]></title>
			<link>https://www.sthda.com/french/wiki/rquery-shapiro-test</link>
			<guid>https://www.sthda.com/french/wiki/rquery-shapiro-test</guid>
			<description><![CDATA[<h2 class="formatter-title wiki-paragraph-2" id="paragraph-description">Description</h2><br />
<br />
teste si un ?chantillon suit une loi normale ou non<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation">Utilisation</h2><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="">shapiro_test</span></span><span style="color: #080;">&#40;</span><span style="color: #0000FF; font-weight: bold;">data</span><span style="color: #080;">=</span>NULL, <span style="color: #0000FF; font-weight: bold;">file</span><span style="color: #080;">=</span><span style="color: #ff0000;">""</span>, varName<span style="color: #080;">&#41;</span>
&nbsp;
&nbsp;
&nbsp;</pre></pre></div><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-arguments">Arguments</h2><br />
<br />
<strong>data</strong> : matrice; les variables sont en colonne.<br />
<strong>file</strong> : fichier contenant les donn?es.<br />
Il faudrait indiquer ? la fonction soit data, soit file. Si data n'est pas indiqu?, alors la fonction demandera automatiquement d'indiquer le chemin d'un fichier txt tabulation contenant les donn?es.<br />
<br />
<strong>varName</strong> : Nom de la variable d'int?r?t.<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-valeurs">Valeurs</h2><br />
<br />
renvoie le r?sultat du test de Shapiro-Wilk<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-voir-aussi">Voir aussi</h2><br />
<br />
<a href="https://www.sthda.com/french/french/wiki/test-de-shapiro-wilk-avec-rquery">Test de Shapiro Wilk avec RQuery</a>]]></description>
			<pubDate>Tue, 23 Aug 2011 21:00:38 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[rquery.wilcoxon]]></title>
			<link>https://www.sthda.com/french/wiki/rquery-wilcoxon</link>
			<guid>https://www.sthda.com/french/wiki/rquery-wilcoxon</guid>
			<description><![CDATA[<h2 class="formatter-title wiki-paragraph-2" id="paragraph-description">Description</h2><br />
<br />
Cette fonction permet de faire un test de wilcoxon sur des ?chantillons ind?pendants ou appari?s.<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation">Utilisation</h2><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="">wilcoxon</span></span><span style="color: #080;">&#40;</span><span style="color: #0000FF; font-weight: bold;">data</span><span style="color: #080;">=</span>NULL, <span style="color: #0000FF; font-weight: bold;">file</span><span style="color: #080;">=</span><span style="color: #ff0000;">""</span>, <span style="color: #0000FF; font-weight: bold;">var</span>, var2<span style="color: #080;">=</span>NULL, grpName<span style="color: #080;">=</span>NULL, paired<span style="color: #080;">=</span>FALSE,...<span style="color: #080;">&#41;</span>
&nbsp;
&nbsp;
&nbsp;</pre></pre></div><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-arguments">Arguments</h2><br />
<br />
<strong>data</strong> : matrice; les variables sont en colonne.<br />
<strong>file</strong> : fichier contenant les donn?es.<br />
Il faudrait indiquer ? la fonction soit data, soit file. Si data n'est pas indiqu?, alors la fonction demandera automatiquement d'indiquer le chemin d'un fichier txt tabulation contenant les donn?es.<br />
<br />
<strong>var</strong> : Nom de la variable pour le test de student.<br />
<strong>var2</strong> : Nom d'une variable optionnelle ( ? renseigner dans le cas d'un test appari?)<br />
<strong>grpName</strong>: Nom de groupe (optionnel), ? renseigner dans le cas d'un test appari?.<br />
<strong>paired</strong> : la fonction fait un test appari?  si paired=TRUE<br />
<strong>...</strong> : Accepte tout param?tre reconnu par la fonction wilcox.test<br />
<br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-valeurs">Valeurs</h2><br />
<br />
renvoie le r?sultat du test<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-voir-aussi">Voir aussi</h2><br />
<br />
<a href="https://www.sthda.com/french/french/wiki/test-de-wilcoxon-avec-rquery">Test de Wilcoxon avec RQuery</a>]]></description>
			<pubDate>Mon, 22 Aug 2011 21:07:22 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[rquery.var_test]]></title>
			<link>https://www.sthda.com/french/wiki/rquery-var-test</link>
			<guid>https://www.sthda.com/french/wiki/rquery-var-test</guid>
			<description><![CDATA[<h2 class="formatter-title wiki-paragraph-2" id="paragraph-description">Description</h2><br />
<br />
Test F : Comparaison de 2 variances<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation">Utilisation</h2><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="">var_test</span></span><span style="color: #080;">&#40;</span><span style="color: #0000FF; font-weight: bold;">data</span><span style="color: #080;">=</span>NULL, <span style="color: #0000FF; font-weight: bold;">file</span><span style="color: #080;">=</span><span style="color: #ff0000;">""</span>, <span style="color: #0000FF; font-weight: bold;">var</span>, grpName<span style="color: #080;">=</span>NULL,...<span style="color: #080;">&#41;</span>
&nbsp;
&nbsp;</pre></pre></div><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-arguments">Arguments</h2><br />
<br />
<strong>data</strong> : matrice; les variables sont en colonne.<br />
<strong>file</strong> : fichier contenant les donn?es.<br />
Il faudrait indiquer ? la fonction soit data, soit file. Si data n'est pas indiqu?, alors la fonction demandera automatiquement d'indiquer le chemin d'un fichier txt tabulation contenant les donn?es.<br />
<br />
<strong>var</strong> : Nom de la variable d'int?r?t.<br />
<strong>grpName</strong>: Nom de groupe.<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-voir-aussi">Voir aussi</h2><br />
<br />
<a href="https://www.sthda.com/french/french/wiki/test-f-comparaison-de-deux-variances-avec-rquery">Test F: Comparaison de deux variances avec RQuery</a>]]></description>
			<pubDate>Sun, 21 Aug 2011 22:05:38 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[rquery.anova]]></title>
			<link>https://www.sthda.com/french/wiki/rquery-anova</link>
			<guid>https://www.sthda.com/french/wiki/rquery-anova</guid>
			<description><![CDATA[<h2 class="formatter-title wiki-paragraph-2" id="paragraph-description">Description</h2><br />
<br />
Cette fonction fait une analyse de variance (ANOVA)<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation">Utilisation</h2><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="">anova</span></span><span style="color: #080;">&#40;</span><span style="color: #0000FF; font-weight: bold;">data</span><span style="color: #080;">=</span>NULL, <span style="color: #0000FF; font-weight: bold;">file</span><span style="color: #080;">=</span><span style="color: #ff0000;">""</span>, varName, grpName, open.<span style="">outputFile</span><span style="color: #080;">=</span>TRUE<span style="color: #080;">&#41;</span>
&nbsp;
&nbsp;</pre></pre></div><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-arguments">Arguments</h2><br />
<br />
<strong>data</strong> : matrice; les variables sont en colonne.<br />
<strong>file</strong> : fichier contenant les donn?es.<br />
Il faudrait indiquer ? la fonction soit data, soit file. Si data n'est pas indiqu?, alors la fonction demandera automatiquement d'indiquer le chemin d'un fichier txt tabulation contenant les donn?es.<br />
<br />
<strong>varName</strong> : Nom de la variable d'int?r?t.<br />
<strong>grpName</strong>: Nom de groupe.<br />
<strong>open.outputFile</strong>: Ouvre le fichier r?sultat si valeur = TRUE<br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-voir-aussi">Voir aussi</h2><br />
<br />
<a href="https://www.sthda.com/french/french/wiki/analyse-de-variance-avec-rquery">Analyse de variance avec RQuery</a>]]></description>
			<pubDate>Sun, 21 Aug 2011 21:13:40 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[rquery.summary]]></title>
			<link>https://www.sthda.com/french/wiki/rquery-summary</link>
			<guid>https://www.sthda.com/french/wiki/rquery-summary</guid>
			<description><![CDATA[<h2 class="formatter-title wiki-paragraph-2" id="paragraph-description">Description</h2><br />
<br />
Cette fonction cr?e une table format?e contenant la moyenne, le SD et les quartiles pour une variable num?rique.<br />
Si grpName est indiqu? le r?sum? est fait pour chaque groupe<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation">Utilisation</h2><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="">summary</span></span> <span style="color: #080;">&#40;</span><span style="color: #0000FF; font-weight: bold;">data</span><span style="color: #080;">=</span>NULL, <span style="color: #0000FF; font-weight: bold;">file</span><span style="color: #080;">=</span><span style="color: #ff0000;">""</span>, varName, statistics <span style="color: #080;">=</span> <span style="color: #0000FF; font-weight: bold;">c</span><span style="color: #080;">&#40;</span><span style="color: #ff0000;">"mean"</span>, <span style="color: #ff0000;">"sd"</span>, <span style="color: #ff0000;">"quantiles"</span><span style="color: #080;">&#41;</span>, quantiles <span style="color: #080;">=</span> <span style="color: #0000FF; font-weight: bold;">c</span><span style="color: #080;">&#40;</span><span style="color: #ff0000;">0</span>, 
    <span style="color: #ff0000;">0.25</span>, <span style="color: #ff0000;">0.5</span>, <span style="color: #ff0000;">0.75</span>, <span style="color: #ff0000;">1</span><span style="color: #080;">&#41;</span>, grpName<span style="color: #080;">&#41;</span>
&nbsp;</pre></pre></div><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-arguments">Arguments</h2><br />
<br />
<strong>data</strong> : matrice; les variables sont en colonne.<br />
<strong>file</strong> : fichier contenant les donn?es.<br />
Il faudrait indiquer ? la fonction soit data, soit file. Si data n'est pas indiqu?, alors la fonction demandera automatiquement d'indiquer le chemin d'un fichier txt tabulation contenant les donn?es.<br />
<br />
<strong>varName</strong> : Nom de la variable d'int?r?t.<br />
<strong>statistics</strong> : peut prendre comme valeur la moyenne "mean", l'?cart type "sd" ou les quartiles "quantiles". Par d?faut les valeurs correspondants aux 3 options sont affich?es.<br />
<strong>quantiles</strong> : les quantiles ? calculer. Par d?faut : c(0, 0.25, 0.5, 0.75, 1)<br />
<strong>grpName</strong>: Nom de groupe (optionnel).<br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-valeurs">Valeurs</h2><br />
<br />
renvoie un objet de type numSummary contenant la table statistique<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-voir-aussi">Voir aussi</h2><br />
<br />
<a href="https://www.sthda.com/french/french/wiki/statistiques-descriptives-avec-rquery">Statistiques descriptives avec RQuery</a>]]></description>
			<pubDate>Sun, 21 Aug 2011 12:45:38 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[rquery.coxph]]></title>
			<link>https://www.sthda.com/french/wiki/rquery-coxph</link>
			<guid>https://www.sthda.com/french/wiki/rquery-coxph</guid>
			<description><![CDATA[<h2 class="formatter-title wiki-paragraph-2" id="paragraph-description">Description</h2><br />
<br />
Mod?le de r?gression cox<br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation">Utilisation</h2><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="">coxph</span></span><span style="color: #080;">&#40;</span><span style="color: #0000FF; font-weight: bold;">data</span><span style="color: #080;">=</span>NULL, <span style="color: #0000FF; font-weight: bold;">file</span><span style="color: #080;">=</span><span style="color: #ff0000;">""</span>, eventName<span style="color: #080;">=</span><span style="color: #ff0000;">""</span>, timeName<span style="color: #080;">=</span><span style="color: #ff0000;">""</span>, varName<span style="color: #080;">=</span><span style="color: #ff0000;">""</span>,
                       type<span style="color: #080;">=</span><span style="color: #0000FF; font-weight: bold;">c</span><span style="color: #080;">&#40;</span><span style="color: #ff0000;">"univariate"</span>, <span style="color: #ff0000;">"multivariate"</span><span style="color: #080;">&#41;</span>, time.<span style="">sleep</span><span style="color: #080;">=</span><span style="color: #ff0000;">0</span><span style="color: #080;">&#41;</span>                     
&nbsp;
&nbsp;</pre></pre></div><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-arguments">Arguments</h2><br />
<br />
<strong>data</strong> : matrice; les variables sont en colonne.<br />
<strong>file</strong> : fichier contenant les donn?es.<br />
Il faudrait indiquer ? la fonction soit data, soit file. Si data n'est pas indiqu?, alors la fonction demandera automatiquement d'indiquer le chemin d'un fichier txt tabulation contenant les donn?es.<br />
<br />
<strong>eventName</strong> : Nom de la colonne contenant l'ev?nement<br />
<strong>timeName</strong> : Nom de la colonne contenant le temps<br />
<strong>varName </strong>: vecteur contenant le(les) nom(s) des variables pour lesquelles on souhaite faire le cox.<br />
<strong>type</strong> : Le type peut ?tre "univariate" (cox univari? pour chacune des variables contenues dans varName) ou "multivariate" (cox multivari? pour la liste de variable contenue dans varName).<br />
<strong>time.sleep</strong>: Met R en pause pendant un certain temps correspondant ? la valeur que vous aurez donn?e ? 'time.sleep' en seconde.<br />
<span class="notice">Ne modifiez pas la valeur de time.sleep</span><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-valeurs">Valeurs</h2><br />
<br />
Enregistre un fichier txt ouvert ? la fin de l'ex?cution de la fonction<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-voir-aussi">Voir aussi</h2><br />
<br />
<a href="https://www.sthda.com/french/french/wiki/modele-de-regression-cox-avec-rquery">Mod?le de r?gression Cox avec RQuery</a>]]></description>
			<pubDate>Fri, 19 Aug 2011 20:43:13 +0200</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[rquery.survival]]></title>
			<link>https://www.sthda.com/french/wiki/rquery-survival</link>
			<guid>https://www.sthda.com/french/wiki/rquery-survival</guid>
			<description><![CDATA[<h2 class="formatter-title wiki-paragraph-2" id="paragraph-description">Description</h2><br />
<br />
Fait des courbes de survie de type kaplan-Meier<br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-utilisation">Utilisation</h2><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="">survival</span></span><span style="color: #080;">&#40;</span><span style="color: #0000FF; font-weight: bold;">data</span><span style="color: #080;">=</span>NULL, <span style="color: #0000FF; font-weight: bold;">file</span><span style="color: #080;">=</span><span style="color: #ff0000;">""</span>, eventName<span style="color: #080;">=</span><span style="color: #ff0000;">""</span>, timeName<span style="color: #080;">=</span><span style="color: #ff0000;">""</span>, varName<span style="color: #080;">=</span><span style="color: #ff0000;">""</span>,
                            <span style="color: #0000FF; font-weight: bold;">legend</span><span style="color: #080;">=</span>TRUE, plotSignificantOnly<span style="color: #080;">=</span>FALSE, display<span style="color: #080;">=</span><span style="color: #0000FF; font-weight: bold;">c</span><span style="color: #080;">&#40;</span><span style="color: #ff0000;">"survStatistic"</span>, <span style="color: #ff0000;">"survMedian"</span>, <span style="color: #ff0000;">"survTable"</span><span style="color: #080;">&#41;</span>,
                            color<span style="color: #080;">=</span><span style="color: #0000FF; font-weight: bold;">c</span><span style="color: #080;">&#40;</span><span style="color: #ff0000;">'green'</span>,<span style="color: #ff0000;">'red'</span>, <span style="color: #ff0000;">'blue'</span>,<span style="color: #ff0000;">'orange'</span>,<span style="color: #ff0000;">'magenta'</span>,<span style="color: #ff0000;">'cyan'</span>,<span style="color: #ff0000;">'yellow'</span>,<span style="color: #ff0000;">'gray'</span><span style="color: #080;">&#41;</span>,                          
                           output<span style="color: #080;">=</span><span style="color: #0000FF; font-weight: bold;">c</span><span style="color: #080;">&#40;</span><span style="color: #ff0000;">"screen"</span>, <span style="color: #ff0000;">"html"</span>,<span style="color: #ff0000;">"none"</span><span style="color: #080;">&#41;</span>, new.<span style="">plot</span><span style="color: #080;">=</span><span style="color: #0000FF; font-weight: bold;">F</span>, time.<span style="">sleep</span><span style="color: #080;">=</span><span style="color: #ff0000;">0</span><span style="color: #080;">&#41;</span>                        
&nbsp;
&nbsp;</pre></pre></div><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-arguments">Arguments</h2><br />
<br />
<strong>data</strong> : matrice; les variables sont en colonne.<br />
<strong>file</strong> : fichier contenant les donn?es.<br />
Il faudrait indiquer ? la fonction soit data, soit file. Si data n'est pas indiqu?, alors la fonction demandera automatiquement d'indiquer le chemin d'un fichier txt tabulation contenant les donn?es.<br />
<br />
<strong>eventName</strong> : Nom de la colonne contenant l'ev?nement<br />
<strong>timeName</strong> : Nom de la colonne contenant le temps<br />
<strong>varName </strong>: vecteur contenant le(les) nom(s) des variables pour lesquelles on souhaite faire les courbes de survie. Si varName contient une liste de variable, un fichier pdf est g?n?r? contenant l'ensemble des graphiques. VarName peut avoir ?galement des valeurs num?riques correspondant aux num?ros de colonnes des variables d'int?r?t<br />
<strong>legend</strong> :Affiche la l?gende du graphique si valeur=TRUE<br />
<strong>plotSignificantOnly</strong> : Si valeur=TRUE, fait le graphique de la courbe de survie si seulement si la statistique est significative (p<0.05)<br />
<strong>display</strong> : Le r?sultat ? afficher. Par d?faut, la statistique, la m?diane de survie et la table de survie sont montr?es. Si vous souhaitez afficher uniquement la statistique, faites display=c("survStatistic")<br />
<strong>color</strong> : Couleurs des groupes. Il faut autant de couleurs que de groupes<br />
<strong>output</strong> : Permet d'afficher les r?sultats soit ? l'?cran ou enregistre un fichier html contenant les donn?es. Il peut prendre les valeur "none" (rien faire) , "screen" (Affichage ? l'?cran) ou "html" (enregistrement d'un fichier html)<br />
<strong>new.plot</strong> : Utilisation d'une nouvelle fen?tre de dessin si valeur = TRUE.<br />
<strong>time.sleep</strong>: Met R en pause pendant un certain temps correspondant ? la valeur que vous aurez donn?e ? 'time.sleep' en seconde.<br />
<span class="notice">Ne modifiez pas la valeur de time.sleep</span><br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-valeurs">Valeurs</h2><br />
<br />
Retourne une liste:<br />
<br />
<strong>fit </strong>: r?sultat de la fonction survfit. Contient la m?diane de survie<br />
<strong>dif </strong>: r?sultat de la fonction survdiff. Contient la statistique (log-rank, p.value)<br />
<strong>ngrp</strong>: Nombre de groupes<br />
<strong>chisq</strong>: log-rank<br />
<strong>pValue</strong>: P value correspondant au log-rank<br />
<strong>HR</strong>: Hazard ratio<br />
<strong>prognostic</strong> : valeur prognostic<br />
<br />
<br />
<h2 class="formatter-title wiki-paragraph-2" id="paragraph-voir-aussi">Voir aussi</h2><br />
<br />
<a href="https://www.sthda.com/french/french/wiki/courbe-de-survie-avec-rquery">Courbe de survie avec RQuery</a>]]></description>
			<pubDate>Thu, 18 Aug 2011 23:58:41 +0200</pubDate>
			
		</item>
		
	</channel>
</rss>
