<?xml version="1.0" encoding="UTF-8" ?>
<!-- RSS generated by PHPBoost on Mon, 04 May 2026 17:34:39 +0200 -->

<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Easy Guides]]></title>
		<atom:link href="https://www.sthda.com/english/syndication/rss/wiki/24" rel="self" type="application/rss+xml"/>
		<link>https://www.sthda.com</link>
		<description><![CDATA[Last articles of the category: What is]]></description>
		<copyright>(C) 2005-2026 PHPBoost</copyright>
		<language>en</language>
		<generator>PHPBoost</generator>
		
		
		<item>
			<title><![CDATA[What is]]></title>
			<link>https://www.sthda.com/english/wiki/what-is</link>
			<guid>https://www.sthda.com/english/wiki/what-is</guid>
			<description><![CDATA[<p class="float-left"><!-- START HTML -->
<i class="fa fa-2x fa-book"></i>
<!-- END HTML --></p><h2 class="formatter-title"> <span style="color:#0000FF;">Welcome in "<strong>WHAT IS</strong>" section!! <img src="https://www.sthda.com/english/english/images/smileys/hello.png" alt=":hi" class="smiley" /> </span></h2><br />
 <br />
In this section, you will find many <strong>articles</strong> trying to answer the frequently asked questions by people in everyday life.<br />
<br />
<span class="success"> Note that you can also contribute to this section by writing any kind of articles including (science, politics, health, education, etc, ...). Your knowledge and expertise can help others!!</span><br />
<br />
<span class="warning">Be helpfull to the others <a href="https://www.sthda.com/english/english/wiki/post.php">here</a></span>]]></description>
			<pubDate>Wed, 26 Nov 2014 07:24:06 +0100</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[Color chart hexadecimal]]></title>
			<link>https://www.sthda.com/english/wiki/color-chart-hexadecimal</link>
			<guid>https://www.sthda.com/english/wiki/color-chart-hexadecimal</guid>
			<description><![CDATA[<h2 class="formatter-title">Specifying colors by hexadecimal code</h2><br />
<br />
<br />
<span class="success">Colors can be specified using hexadecimal color code, such as &amp;#8220;#FFC00&amp;#8221;</span><br />
<br />
<br />
<img src="https://www.sthda.com/english/sthda/RDoc/images/hextable.gif" alt="" /><br />
<br />
(Source: http://www.visibone.com)]]></description>
			<pubDate>Wed, 19 Nov 2014 01:32:42 +0100</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[Independent samples t test]]></title>
			<link>https://www.sthda.com/english/wiki/independent-samples-t-test</link>
			<guid>https://www.sthda.com/english/wiki/independent-samples-t-test</guid>
			<description><![CDATA[<!-- START HTML -->


            
  <!--====================== start from here when you copy to sthda================-->  
  <div id="rdoc">

<div id="TOC">
<ul>
<li><a href="#introduction">Introduction</a></li>
<li><a href="#example-of-data">Example of data</a></li>
<li><a href="#online-independent-samples-t-test-calculator">Online independent samples t-test calculator</a></li>
</ul>
</div>

<div id="introduction" class="section level1">
<h1>Introduction</h1>
<p><strong>Independent samples t test</strong> is used to compare the means of two unrelated groups of samples. The aim of this article is to show you an <strong>example</strong>.</p>
<p>The <strong>independent t-test formula</strong> is :</p>
<p><span class="math">\[ 
t = \frac{m_1 - m_2}{\sqrt{ \frac{S^2}{n_1} + \frac{S^2}{n_2} }} 
\]</span></p>
<ul>
<li><span class="math">\(m_1\)</span> and <span class="math">\(m_2\)</span> are the means of the two groups being compared.</li>
<li><span class="math">\(n_1\)</span> and <span class="math">\(n_2\)</span> are the sizes of the two groups, respectively.</li>
<li><span class="math">\(S^2\)</span> is the common <strong>variance</strong> of the two samples.</li>
</ul>
<p>The degrees of freedom are :</p>
<p><span class="math">\[ df = n_1 + n_2 -2 \]</span></p>
<p><span class="success">Once the <strong>t test value</strong> has been calculated, you have to use <a href="https://www.sthda.com/english/english/wiki/t-test-table"><strong>t test table</strong></a> to determine the <strong>level of significance</strong>. </span></p>
<div class="block">
The <a href="https://www.sthda.com/english/english/wiki/t-test-formula"><strong>t-test formula</strong></a> is described in details <a href="https://www.sthda.com/english/english/wiki/t-test-formula">here</a> and an online <a href="https://www.sthda.com/english/english/rsthda/unpaired-t-test.php"><strong>t-test calculator</strong></a> is available <a href="https://www.sthda.com/english/english/rsthda/unpaired-t-test.php">here</a>.
</div>
</div>
<div id="example-of-data" class="section level1">
<h1>Example of data</h1>
<p>As an example, we have a population of 20 people selected randomly (10 women and 10 men). We want to know whether women’s average weight is <strong>significantly</strong> different from men’s average weight.</p>
<p>In this typical <strong>example</strong> the two samples being compared are completely unrelated and you have to use <strong>independent samples t test</strong>.</p>
</div>
<div id="online-independent-samples-t-test-calculator" class="section level1">
<h1>Online independent samples t-test calculator</h1>
<p>The best free <a href="https://www.sthda.com/english/english/wiki/t-test-calculator-the-3-best-one-you-should-know"><strong>statistics calculator software</strong></a> can be used to calculate t-test statistics online.</p>
<p>If you want to do it with R, follow this link : <a href="https://www.sthda.com/english/english/wiki/independent-t-test">**independent t test</a>.</p>
</div>

<script>jQuery(document).ready(function () {
    jQuery('h1').addClass('wiki_paragraph1');
    jQuery('h2').addClass('wiki_paragraph2');
    jQuery('h3').addClass('wiki_paragraph3');
    jQuery('h4').addClass('wiki_paragraph4');
    });//add phpboost class to header</script>
<style>.content{padding:0px;}</style>

<!-- dynamically load mathjax for compatibility with self-contained -->
<script>
  (function () {
    var script = document.createElement("script");
    script.type = "text/javascript";
    script.src  = "https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML";
    document.getElementsByTagName("head")[0].appendChild(script);
  })();
</script>

</div><!--end rdoc-->
<!--====================== stop here when you copy to sthda================-->



<!-- END HTML -->]]></description>
			<pubDate>Mon, 17 Nov 2014 15:28:35 +0100</pubDate>
			
		</item>
		
		<item>
			<title><![CDATA[Data analysis software : the 5 top softwares you should test]]></title>
			<link>https://www.sthda.com/english/wiki/data-analysis-software-the-5-top-softwares-you-should-test</link>
			<guid>https://www.sthda.com/english/wiki/data-analysis-software-the-5-top-softwares-you-should-test</guid>
			<description><![CDATA[<span style="font-size: 15px;"><span style="color:#0000FF;">The 2 top free and the 3 top not free <strong>softwares</strong> for statiscal <strong>data analysis</strong> are listed here :</span></span><br />
<br />
<br />
<h2 class="formatter-title"> The 2 Top free data analysis software : </h2><br />
<br />
<h3 class="formatter-title">1. R</h3><br />
<br />
<img src="https://www.sthda.com/english/upload/r_software_home.png" alt="" /><br />
<br />
<a href="http://www.r-project.org/">R is a free software environment</a> for statistical analysis and graphics. It runs on different platforms : UNIX platforms, Windows and MacOS.<br />
<br />
<br />
<h3 class="formatter-title">2.Tanagra</h3><br />
<br />
<a href="http://eric.univ-lyon2.fr/~ricco/tanagra/en/tanagra.html">TANAGRA </a>is a <strong>free DATA MINING software</strong> for academic and research purposes. It proposes several data analysis methods including exploratory data analysis, statistical learning and machine learning.<br />
<br />
<br />
<h2 class="formatter-title">The 3 top (not free) data analysis software</h2><br />
<br />
<br />
<h3 class="formatter-title">1. Graphpad</h3><br />
<br />
<img src="https://www.sthda.com/english/upload/graphpad_prism.png" alt="" /><br />
<br />
<a href="http://www.graphpad.com/">Graphpad </a>is an amazing statistical software which can guides your for statiscal tests and graphics analysis.<br />
<br />
<br />
<h3 class="formatter-title">2. SPSS</h3><br />
<br />
<a href="http://www-01.ibm.com/software/analytics/spss/">IBM SPSS software</a><br />
<br />
<br />
<h3 class="formatter-title">3. XLSTAT</h3><br />
<br />
<img src="https://www.sthda.com/english/english/upload/xlstat_software.png" alt="" /><br />
<br />
<a href="http://www.xlstat.com/en/">XLSTAT</a> is the leading data analysis and statistical solution for Microsoft Excel.]]></description>
			<pubDate>Mon, 17 Nov 2014 08:12:24 +0100</pubDate>
			
		</item>
		
	</channel>
</rss>
