<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: How to Perform Multiple T-test in R for Different Variables	</title>
	<atom:link href="https://www.datanovia.com/en/blog/how-to-perform-multiple-t-test-in-r-for-different-variables/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.datanovia.com/en/blog/how-to-perform-multiple-t-test-in-r-for-different-variables/</link>
	<description>Data Mining and Statistics for Decision Support</description>
	<lastBuildDate>Tue, 02 May 2023 10:05:43 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
	<item>
		<title>
		By: Ethan		</title>
		<link>https://www.datanovia.com/en/blog/how-to-perform-multiple-t-test-in-r-for-different-variables/#comment-28729</link>

		<dc:creator><![CDATA[Ethan]]></dc:creator>
		<pubDate>Tue, 02 May 2023 10:05:43 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=15407#comment-28729</guid>

					<description><![CDATA[Hi, this is a very good script! I use this but cannot modify the axis lebel, can anyone tell me where to do that?]]></description>
			<content:encoded><![CDATA[<p>Hi, this is a very good script! I use this but cannot modify the axis lebel, can anyone tell me where to do that?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Cheoma Frongia		</title>
		<link>https://www.datanovia.com/en/blog/how-to-perform-multiple-t-test-in-r-for-different-variables/#comment-28550</link>

		<dc:creator><![CDATA[Cheoma Frongia]]></dc:creator>
		<pubDate>Thu, 08 Dec 2022 20:19:54 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=15407#comment-28550</guid>

					<description><![CDATA[Thanks a lot!! Simple and clear to run :)  It works perfectly]]></description>
			<content:encoded><![CDATA[<p>Thanks a lot!! Simple and clear to run 🙂  It works perfectly</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Andi		</title>
		<link>https://www.datanovia.com/en/blog/how-to-perform-multiple-t-test-in-r-for-different-variables/#comment-22935</link>

		<dc:creator><![CDATA[Andi]]></dc:creator>
		<pubDate>Tue, 02 Aug 2022 06:13:01 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=15407#comment-22935</guid>

					<description><![CDATA[Thanks for the brilliant tutorial. With my data I run into the problem of the y axes scales which vary strongly between variables and I cannot figure out how to adjust them. Can you give me a hint?]]></description>
			<content:encoded><![CDATA[<p>Thanks for the brilliant tutorial. With my data I run into the problem of the y axes scales which vary strongly between variables and I cannot figure out how to adjust them. Can you give me a hint?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: jay		</title>
		<link>https://www.datanovia.com/en/blog/how-to-perform-multiple-t-test-in-r-for-different-variables/#comment-20656</link>

		<dc:creator><![CDATA[jay]]></dc:creator>
		<pubDate>Sun, 28 Jun 2020 03:36:06 +0000</pubDate>
		<guid isPermaLink="false">https://www.datanovia.com/en/?p=15407#comment-20656</guid>

					<description><![CDATA[# data
example.df &#060;- data.frame( 
  genotype = sample(c(&#034;A&#034;, &#034;B&#034;,&#034;C&#034;,&#034;D&#034;), 50, replace = TRUE),
  oxygen = sample(c(&#034;Yes&#034;, &#034;No&#034;), 50, replace = TRUE), 
  value1 = rnorm(50, 100, 5), value2=rnorm(50, 10,5), value3 = rnorm (50, 25, 5))

# plot
ggboxplot(example.df, x = &#034;genotype&#034;, y = &#034;value1&#034;, color = &#034;oxygen&#034;, bxp.errorbar = TRUE, palette = &#034;jco&#034;)

# stat test
stat.test %
  group_by(oxygen) %&#062;%
  dunn_test(value1~genotype) %&#062;%
  adjust_pvalue(method = &quot;bonferroni&quot;) %&#062;%
  add_significance(&quot;p.adj&quot;)

If I wanted to use dunn test to perform all comparisons between the genotypes grouped by oxygen, for all numeric variables and generate plots with significance values for only certain comparisons, how could I accomplish that?

Thanks]]></description>
			<content:encoded><![CDATA[<p># data<br />
example.df &lt;- data.frame(<br />
  genotype = sample(c(&quot;A&quot;, &quot;B&quot;,&quot;C&quot;,&quot;D&quot;), 50, replace = TRUE),<br />
  oxygen = sample(c(&quot;Yes&quot;, &quot;No&quot;), 50, replace = TRUE),<br />
  value1 = rnorm(50, 100, 5), value2=rnorm(50, 10,5), value3 = rnorm (50, 25, 5))</p>
<p># plot<br />
ggboxplot(example.df, x = &quot;genotype&quot;, y = &quot;value1&quot;, color = &quot;oxygen&quot;, bxp.errorbar = TRUE, palette = &quot;jco&quot;)</p>
<p># stat test<br />
stat.test %<br />
  group_by(oxygen) %&gt;%<br />
  dunn_test(value1~genotype) %&gt;%<br />
  adjust_pvalue(method = &#8220;bonferroni&#8221;) %&gt;%<br />
  add_significance(&#8220;p.adj&#8221;)</p>
<p>If I wanted to use dunn test to perform all comparisons between the genotypes grouped by oxygen, for all numeric variables and generate plots with significance values for only certain comparisons, how could I accomplish that?</p>
<p>Thanks</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Object Caching 109/182 objects using Memcached
Page Caching using Disk: Enhanced 
Lazy Loading (feed)
Database Caching 41/65 queries in 0.038 seconds using APC

Served from: www.datanovia.com @ 2025-08-01 21:07:30 by W3 Total Cache
-->