PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_univar_ttest_2normal (g07ca)
Purpose
nag_univar_ttest_2normal (g07ca) computes a -test statistic to test for a difference in means between two Normal populations, together with a confidence interval for the difference between the means.
Syntax
[
t,
df,
prob,
dl,
du,
ifail] = g07ca(
tail,
equal,
nx,
ny,
xmean,
ymean,
xstd,
ystd,
clevel)
[
t,
df,
prob,
dl,
du,
ifail] = nag_univar_ttest_2normal(
tail,
equal,
nx,
ny,
xmean,
ymean,
xstd,
ystd,
clevel)
Description
Consider two independent samples, denoted by and , of size and drawn from two Normal populations with means and , and variances and respectively. Denote the sample means by and and the sample variances by and respectively.
nag_univar_ttest_2normal (g07ca) calculates a test statistic and its significance level to test the null hypothesis
, together with upper and lower confidence limits for
. The test used depends on whether or not the two population variances are assumed to be equal.
1. |
It is assumed that the two variances are equal, that is .
The test used is the two sample -test. The test statistic is defined by;
where
is the pooled variance of the two samples.
Under the null hypothesis this test statistic has a -distribution with degrees of freedom.
The test of is carried out against one of three possible alternatives;
- ; the significance level, , i.e., a two tailed probability.
- ; the significance level, , i.e., an upper tail probability.
- ; the significance level, , i.e., a lower tail probability.
Upper and lower confidence limits for are calculated as:
where is the percentage point of the -distribution with ( ) degrees of freedom. |
2. |
It is not assumed that the two variances are equal.
If the population variances are not equal the usual two sample -statistic no longer has a -distribution and an approximate test is used.
This problem is often referred to as the Behrens–Fisher problem, see Kendall and Stuart (1969). The test used here is based on Satterthwaites procedure. To test the null hypothesis the test statistic is used where
where .
A -distribution with degrees of freedom is used to approximate the distribution of where
The test of is carried out against one of the three alternative hypotheses described above, replacing by and by .
Upper and lower confidence limits for are calculated as:
where is the percentage point of the -distribution with degrees of freedom. |
References
Johnson M G and Kotz A (1969) The Encyclopedia of Statistics 2 Griffin
Kendall M G and Stuart A (1969) The Advanced Theory of Statistics (Volume 1) (3rd Edition) Griffin
Snedecor G W and Cochran W G (1967) Statistical Methods Iowa State University Press
Parameters
Compulsory Input Parameters
- 1:
– string (length ≥ 1)
-
Indicates which tail probability is to be calculated, and thus which alternative hypothesis is to be used.
- The two tail probability, i.e., .
- The upper tail probability, i.e., .
- The lower tail probability, i.e., .
Constraint:
, or .
- 2:
– string (length ≥ 1)
-
Indicates whether the population variances are assumed to be equal or not.
- The population variances are assumed to be equal, that is .
- The population variances are not assumed to be equal.
Constraint:
or .
- 3:
– int64int32nag_int scalar
-
, the size of the sample.
Constraint:
.
- 4:
– int64int32nag_int scalar
-
, the size of the sample.
Constraint:
.
- 5:
– double scalar
-
, the mean of the sample.
- 6:
– double scalar
-
, the mean of the sample.
- 7:
– double scalar
-
, the standard deviation of the sample.
Constraint:
.
- 8:
– double scalar
-
, the standard deviation of the sample.
Constraint:
.
- 9:
– double scalar
-
The confidence level, , for the specified tail. For example will give a confidence interval.
Constraint:
.
Optional Input Parameters
None.
Output Parameters
- 1:
– double scalar
-
Contains the test statistic, or .
- 2:
– double scalar
-
Contains the degrees of freedom for the test statistic.
- 3:
– double scalar
-
Contains the significance level, that is the tail probability,
, as defined by
tail.
- 4:
– double scalar
-
Contains the lower confidence limit for .
- 5:
– double scalar
-
Contains the upper confidence limit for .
- 6:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Errors or warnings detected by the function:
-
-
On entry, | , or , |
or | or , |
or | , |
or | , |
or | , |
or | , |
or | , |
or | . |
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
Accuracy
The computed probability and the confidence limits should be accurate to approximately five significant figures.
Further Comments
The sample means and standard deviations can be computed using
nag_stat_summary_onevar (g01at).
Example
This example reads the two sample sizes and the sample means and standard deviations for two independent samples. The data is taken from page 116 of
Snedecor and Cochran (1967) from a test to compare two methods of estimating the concentration of a chemical in a vat. A test of the equality of the means is carried out first assuming that the two population variances are equal and then making no assumption about the equality of the population variances.
Open in the MATLAB editor:
g07ca_example
function g07ca_example
fprintf('g07ca example results\n\n');
nx = int64(4);
ny = int64(8);
xmean = 25;
ymean = 21;
xstd = 0.8185;
ystd = 4.2083;
fprintf('Sample X\n');
fprintf(' Sample size = %5d\n', nx);
fprintf(' Mean = %10.4e\n', xmean);
fprintf(' Standard deviation = %10.4e\n\n', xstd);
fprintf('Sample Y\n');
fprintf(' Sample size = %5d\n', ny);
fprintf(' Mean = %10.4e\n', ymean);
fprintf(' Standard deviation = %10.4e\n', ystd);
clevel = [0.95, 0.95];
tail = {'Two'; 'Two'};
equal = {'Equal'; 'Unequal'};
for j = 1:numel(clevel)
[t, df, prob, dl, du, ifail] = ...
g07ca( ...
tail{j}, equal{j}, nx, ny, xmean, ymean, xstd, ystd, clevel(j));
if equal{1}=='Equal'
fprintf('\nAssuming population variances are equal.\n\n');
else
fprintf('\nNo assumptions about population variances.\n\n');
end
fprintf('t test statistic = %11.4f\n', t);
fprintf('Degrees of freedom = %8.1f\n', df);
fprintf('Significance level = %11.4f\n\n', prob);
fprintf('Difference in means\n');
fprintf(' Value = %10.4f\n', xmean - ymean);
fprintf(' Lower confidence limit = %10.4f\n', dl);
fprintf(' Upper confidence limit = %10.4f\n', du);
fprintf(' Confidence level = %10.4f\n', clevel(j));
end
g07ca example results
Sample X
Sample size = 4
Mean = 2.5000e+01
Standard deviation = 8.1850e-01
Sample Y
Sample size = 8
Mean = 2.1000e+01
Standard deviation = 4.2083e+00
Assuming population variances are equal.
t test statistic = 1.8403
Degrees of freedom = 10.0
Significance level = 0.0955
Difference in means
Value = 4.0000
Lower confidence limit = -0.8429
Upper confidence limit = 8.8429
Confidence level = 0.9500
Assuming population variances are equal.
t test statistic = 2.5922
Degrees of freedom = 8.0
Significance level = 0.0320
Difference in means
Value = 4.0000
Lower confidence limit = 0.4410
Upper confidence limit = 7.5590
Confidence level = 0.9500
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015