TwoSampleTTest - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Student[Statistics]

  

TwoSampleTTest

  

apply the two sample t-test for population means

 

Calling Sequence

Parameters

Description

Notes

Examples

References

Compatibility

Calling Sequence

TwoSampleTTest(X1, X2, beta, confidence_option, output_option)

Parameters

X1

-

first data sample

X2

-

second data sample

beta

-

realcons; the test value for the difference between the two means

confidence_option

-

(optional) equation of the form confidence=float.

output_option

-

(optional) equation of the form output=x where x is report, plot, or both

Description

• 

The TwoSampleTTest function computes the two sample t-test upon datasets X1 and X2. This tests whether the population mean of X1 minus the population mean of X2 is equal to beta, under the assumption that both populations are normally distributed. No assumptions are made on the standard deviation.

• 

The first parameter X1 is the first data sample to use in the analysis.

• 

The second parameter X2 is the second data sample to use in the analysis.

• 

The third parameter beta is the assumed difference in population means (assumed population mean of X1 minus the assumed population mean of X2), specified as a real constant.

• 

confidence=float

  

This option is used to specify the confidence level of the interval and must be a floating-point value between 0 and 1.  By default this is set to 0.95.

• 

If the option output is not included or is specified to be output=report, then the function will return a report. If output=plot is specified, then the function will return a plot of the sample test. If output=both is specified, then both the report and the plot will be returned.

Notes

• 

A stronger version of the t-test, the z-test is available if the standard deviation of the sample is known.

• 

If data samples are paired data (collected as a pair of observations rather than as independent observations), the paired t-test may be used.

Examples

withStudentStatistics:

Specify the data sample.

X9,10,8,4,8,3,0,10,15,9:

Y6,3,10,11,9,8,13,4,4,4:

MeanXMeanY

25

(1)

Calculate the two sample t-test on a list of values.

TwoSampleTTestX,Y,0,confidence=0.95

Standard T-Test on Two Samples (Unequal Variances)
------------------------------------------------
Null Hypothesis:
Sample drawn from populations with difference of means equal to 0
Alt. Hypothesis:
Sample drawn from population with difference of means not equal to 0
 
Sample Sizes:            10, 10
Sample Means:            7.6, 7.2
Sample Standard Dev:     4.24788, 3.48967
Difference in Means:     0.4
Distribution:            StudentT(17.3463603321218)
Computed Statistic:      .230089496654211
Computed p-value:        .820713744505649
Confidence Interval:     -3.26224630470081 .. 4.06224630470081
                         (difference of population means)
 
Result: [Accepted]
This statistical test does not provide enough evidence to conclude that the null hypothesis is false.

hypothesis=true,confidenceinterval=−3.26224630470081..4.06224630470081,distribution=StudentT17.3463603321218,pvalue=0.820713744505649,statistic=0.230089496654211

(2)

If the output=plot option is included, then a plot will be returned.

TwoSampleTTestX,Y,0,confidence=0.95,output=plot

If the output=both option is included, then both a report and a plot will be returned.

report,graphTwoSampleTTestX,Y,0,confidence=0.95,output=both:

Standard T-Test on Two Samples (Unequal Variances)
------------------------------------------------
Null Hypothesis:
Sample drawn from populations with difference of means equal to 0
Alt. Hypothesis:
Sample drawn from population with difference of means not equal to 0
 
Sample Sizes:            10, 10
Sample Means:            7.6, 7.2
Sample Standard Dev:     4.24788, 3.48967
Difference in Means:     0.4
Distribution:            StudentT(17.3463603321218)
Computed Statistic:      .230089496654211
Computed p-value:        .820713744505649
Confidence Interval:     -3.26224630470081 .. 4.06224630470081
                         (difference of population means)
 
Result: [Accepted]
This statistical test does not provide enough evidence to conclude that the null hypothesis is false.
Histogram Type:  default
Data Range:      0 .. 15
Bin Width:       1/2
Number of Bins:  30
Frequency Scale: relative
Histogram Type:  default
Data Range:      3 .. 13
Bin Width:       1/3
Number of Bins:  30
Frequency Scale: relative

report

hypothesis=true,confidenceinterval=−3.26224630470081..4.06224630470081,distribution=StudentT17.3463603321218,pvalue=0.820713744505649,statistic=0.230089496654211

(3)

graph

References

  

Kanji, Gopal K. 100 Statistical Tests. London: SAGE Publications Ltd., 1994.

  

Sheskin, David J. Handbook of Parametric and Nonparametric Statistical Procedures. London: CRC Press, 1997.

Compatibility

• 

The Student[Statistics][TwoSampleTTest] command was introduced in Maple 18.

• 

For more information on Maple 18 changes, see Updates in Maple 18.

See Also

Statistics[TwoSampleTTest]

Student

Student/Statistics/TwoSampleTTest/overview

Student[Statistics]

Student[Statistics][HypothesisTest]

Student[Statistics][OneSampleTTest]

Student[Statistics][TwoSamplePairedTTest]