Difference between revisions of "Manuals/calci/TTESTEQUALVARIANCES"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "<div id="6SpaceContent" class="zcontent" align="left"> '''TTESTTWOSAMPLESEQUALVARIANCES('''Array1, Array2, HypothesizeDiff, Alpha, NewTableFlag) where, '''Array1 '''...")
 
 
(15 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<div id="6SpaceContent" class="zcontent" align="left">
+
<div style="font-size:30px">'''TTESTTWOSAMPLESEQUALVARIANCES(ar1,ar2,md,alpha,lv)'''</div><br/>
 +
*<math>ar1 </math> and <math> ar2 </math>  are set of values.
 +
*<math>md </math> is the  Hypothesized Mean Difference.
 +
*<math> alpha </math> is the significance level.
 +
*<math> lv </math> is the logical value.
  
'''TTESTTWOSAMPLESEQUALVARIANCES('''Array1, Array2, HypothesizeDiff, Alpha, NewTableFlag)
+
==Description==
 +
*This function calculating the two Sample for equal variances determines whether two sample means are equal.
 +
*We can use this test when both:
 +
*1.The two sample sizes  are equal;
 +
*2.It can be assumed that the two distributions have the same variance.
 +
*In <math>TTESTTWOSAMPLESEQUALVARIANCES(ar1,ar2,md,alpha,lv)</math>, <math>ar1 </math> and <math> ar2 </math> are two arrays of sample values. <math> md </math> is the Hypothesized Mean Difference .
 +
*Suppose md=0 which  indicates that sample means are hypothesized to be equal.
 +
*<math> alpha </math> is the significance level which ranges from 0 to 1.
 +
*<math> lv </math> is the logical value like TRUE or FALSE.
 +
*TRUE is indicating the result will display in new worksheet.Suppose we are omitted the lv value it will consider the value as FALSE.
 +
*The t statistic of this function calculated by:
 +
<math>t = \frac{\bar{x_1}-\bar{x_2}}{s_{x1}.s_{x2}.\sqrt{\frac{2}{n}}}</math>
 +
where <math>s_{x1}.s_{x2} = \sqrt{\frac{1}{2}(s_{x1}^2+s_{x2}^2)}</math>
 +
*Here <math>s_{x1}</math> and <math>s_{x2}</math> are unbiased estimators of the variances of two samples.<math>s_{x1}.s_{x2}</math> is the grand standard deviation data 1 and data2 and n is the data points of two data set. 
 +
*This function will give the result as error when
 +
  1.any one of the argument is non-numeric.
 +
  2.alpha>1
 +
  3.<math>ar1 </math> and <math> ar2 </math> are having different number of data points.
  
where,
+
==Examples==
 +
{| class="wikitable"
 +
|+Spreadsheet
 +
|-
 +
! !! A !! B !! C !! D!! E !! F
 +
|-
 +
! 1
 +
| 10 || 15 || 18 || 27 || 12 || 34
 +
|-
 +
! 2
 +
| 17 || 20 || 25 || 39 || 9 || 14
 +
|}
  
'''Array1 '''- Input range should be one block.
+
#=TTESTTWOSAMPLESEQUALVARIANCES(A1:F1,A2:F2,2,0.5)
  
'''Array2 '''- Input range should be one block.
+
{| class="wikitable"
 
+
|+Result
'''HypothesizeDiff '''- represents the Hypothesized Mean Difference.A value 0 indicates that sample means are hypothesized to be equal.
+
|-
 
+
! !! Variable 1 !! Variable 2
'''Alpha '''- represents the significance level and value in range 0 to 1.
+
|-
 
+
! Mean
''' ''''''NewTableFlag''' - is the TRUE or FALSE.If set as TRUE,the result in new sheet. If NewTableFlag is omitted, it assumed to be FALSE.</div>
+
| 19.333333333333332 || 20.666666666666668
----
+
|-
<div id="1SpaceContent" class="zcontent" align="left">T-Test: Two Sample for equal variances determines whether two sample means are equal.</div>
+
! Variance
----
+
| 87.06666666666666 || 109.86666666666667
<div id="7SpaceContent" class="zcontent" align="left">
+
|-
 
+
! Observations
Lets see an example in (Column3Row1)
+
| 6 || 6
 
+
|-
<nowiki>=TTESTTWOSAMPLESEQUALVARIANCES (R1C1:R6C1, R1C2:R6C2, 0, 0.05, TRUE)</nowiki>
+
! Pooled Variance
 
+
| 98.46666666666667
TTESTTWOSAMPLESEQUALVARIANCES returns the result in new sheet(9Space).
+
|-
 
+
! Hypothesized Mean Difference
<nowiki>=TTESTTWOSAMPLESEQUALVARIANCES(R1C1:R4C1,R1C2:R6C2, 0, 0.055, TRUE)</nowiki>
+
| 2
 
+
|-
TTESTTWOSAMPLESEQUALVARIANCES returns the #ERROR(LengthofArray1 != LengthofArray2).
+
! Degree Of Freedom
 
+
| 10
</div>
+
|-
----
+
! T- Statistics
<div id="12SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="left">
+
| -0.5818281835787091
 
+
|-
T-TEST : TWO SAMPLE ASSUMING EQUAL VARIANCES
+
! P(T<=t) One-tail
 
+
| 0.28678199670723614
</div></div>
+
|-
----
+
! T Critical One-Tail
<div id="10SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Syntax </div><div class="ZEditBox"><center></center></div></div>
+
| 0
----
+
|-
<div id="4SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Remarks </div></div>
+
! P(T<=t) Two-tail
----
+
| 0.5735639934144723
<div id="3SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Examples </div></div>
+
|-
----
+
! T Critical Two-Tail
<div id="11SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Description </div></div>
+
| 0.6998120613365443
----
+
|}
<div id="8SpaceContent" class="zcontent" align="left">
 
 
 
If the Alpha &lt; 0 or Alpha &gt;1, TTESTTWOSAMPLESEQUALVARIANCES returns the #ERROR.
 
 
 
TTESTTWOSAMPLESEQUALVARIANCES returns the #ERROR, if Length of Array1 != Length of Array2.
 
  
</div>
+
==Related Videos==
----
 
<div id="2SpaceContent" class="zcontent" align="left">
 
  
{| id="TABLE3" class="SpreadSheet blue"
+
{{#ev:youtube|OHHhzLHakKA|280|center|TTESTEQUALVARIANCES}}
|- class="even"
 
| class=" " |
 
| Column1
 
| Column2
 
| class="  " | Column3
 
| Column4
 
|- class="odd"
 
| class=" " | Row1
 
| 10
 
| 3
 
| class="sshl_f" | 9Space
 
| class=" " |
 
|- class="even"
 
| class="  " | Row2
 
| 7
 
| 8
 
| class="    " |
 
| class=" " |
 
|- class="odd"
 
| Row3
 
| 12
 
| 8
 
| class=" " |
 
| class=" " |
 
|- class="even"
 
| Row4
 
| 17
 
| 18
 
| class="sshl_f" | #ERROR
 
| class=" " |
 
|- class="odd"
 
| class=" " | Row5
 
| class=" " | 46
 
| 34
 
| class="          " |
 
| class=" " |
 
|- class="even"
 
| Row6
 
| class="SelectTD1" | 6
 
| 7
 
| class=" " |
 
| class=" " |
 
|}
 
  
<div align="left">[[Image:calci1.gif]]</div></div>
+
==See Also==
----
+
*[[Manuals/calci/TTEST  | TTEST ]]
<div id="9SpaceContent" class="zcontent" align="left">
+
*[[Manuals/calci/TDIST  | TDIST ]]
 
+
*[[Manuals/calci/TINV  | TINV ]]
{| class="SpreadSheet blue"
+
*[[Manuals/calci/TTESTUNEQUALVARIANCES  | TTESTUNEQUALVARIANCES ]]
|+ t-Test: Two-Sample Assuming Equal Variances<br />
 
|- class="even"
 
!
 
! Variable1
 
! Variable2
 
|- class="odd"
 
| Mean
 
| 16.333333333333332
 
| 13
 
|- class="even"
 
| Variance
 
| 226.66666666666668
 
| 130.4
 
|- class="odd"
 
| Observations
 
| 6
 
| 6
 
|- class="even"
 
| Pooled Variance
 
| 178.53333333333336
 
|- class="odd"
 
| Hypothesized Mean Difference
 
| 0
 
|- class="even"
 
| Degree Of Freedom
 
| 10
 
|- class="odd"
 
| T Statistics
 
| 0.4320954725359997
 
|- class="even"
 
| P(T&lt;=t) One-tail
 
| 0.3374203531947199
 
|- class="odd"
 
| T Critical One-tail
 
| 1.8124611201453893
 
|- class="even"
 
| P(T&lt;=t) Two-tail
 
| 0.6748407063894398
 
|- class="odd"
 
| T Critical Two-tail
 
| 2.2281388448257084
 
|}
 
  
</div>
+
==References==
----
+
*[http://en.wikipedia.org/wiki/Student%27s_t-test Student's t-distribution]

Latest revision as of 14:03, 2 July 2015

TTESTTWOSAMPLESEQUALVARIANCES(ar1,ar2,md,alpha,lv)


  • and are set of values.
  • is the Hypothesized Mean Difference.
  • is the significance level.
  • is the logical value.

Description

  • This function calculating the two Sample for equal variances determines whether two sample means are equal.
  • We can use this test when both:
  • 1.The two sample sizes are equal;
  • 2.It can be assumed that the two distributions have the same variance.
  • In , and are two arrays of sample values. is the Hypothesized Mean Difference .
  • Suppose md=0 which indicates that sample means are hypothesized to be equal.
  • is the significance level which ranges from 0 to 1.
  • is the logical value like TRUE or FALSE.
  • TRUE is indicating the result will display in new worksheet.Suppose we are omitted the lv value it will consider the value as FALSE.
  • The t statistic of this function calculated by:

where

  • Here and are unbiased estimators of the variances of two samples. is the grand standard deviation data 1 and data2 and n is the data points of two data set.
  • This function will give the result as error when
  1.any one of the argument is non-numeric.
  2.alpha>1
  3. and  are having different number of data points.

Examples

Spreadsheet
A B C D E F
1 10 15 18 27 12 34
2 17 20 25 39 9 14
  1. =TTESTTWOSAMPLESEQUALVARIANCES(A1:F1,A2:F2,2,0.5)
Result
Variable 1 Variable 2
Mean 19.333333333333332 20.666666666666668
Variance 87.06666666666666 109.86666666666667
Observations 6 6
Pooled Variance 98.46666666666667
Hypothesized Mean Difference 2
Degree Of Freedom 10
T- Statistics -0.5818281835787091
P(T<=t) One-tail 0.28678199670723614
T Critical One-Tail 0
P(T<=t) Two-tail 0.5735639934144723
T Critical Two-Tail 0.6998120613365443

Related Videos

TTESTEQUALVARIANCES

See Also

References