PairedZTest

PairedZTest[data]

tests whether the mean of the data is zero.

PairedZTest[{data1,data2}]

tests whether the means of data1 and data2 are equal.

PairedZTest[dspec,σ]

tests for zero or equal means assuming a population variance σ.

PairedZTest[dspec,σ,μ0]

tests the mean against μ0.

PairedZTest[dspec,σ,μ0,"property"]

returns the value of "property".

Details and Options

  • Given data1 and data2, PairedZTest performs a test on the paired differences of the two datasets.
  • PairedZTest tests the null hypothesis against the alternative hypothesis :
  • data
    {data1,data2}
  • where μ is the population mean for data and μ12 is the mean of the paired differences of the two datasets .
  • By default, a probability value or -value is returned.
  • A small -value suggests that it is unlikely that is true.
  • The data in dspec can be univariate {x1,x2,} or multivariate {{x1,y1,},{x2,y2,},}.
  • The argument σ can be any positive real number or a positive definite matrix with dimension equal to the dimension of data.
  • The argument μ0 can be a real number or a real vector with length equal to the dimension of the data.
  • PairedZTest assumes that the data is normally distributed and that the variance is known and not estimated from the data.
  • If variances or covariance matrices are not provided, PairedZTest treats the sample estimate as the known variance or covariance.
  • PairedZTest[dspec,σ,μ0,"HypothesisTestData"] returns a HypothesisTestData object htd that can be used to extract additional test results and properties using the form htd["property"].
  • PairedZTest[dspec,σ,μ0,"property"] can be used to directly give the value of "property".
  • Properties related to the reporting of test results include:
  • "DegreesOfFreedom"the degrees of freedom of a test
    "PValue"list of -values
    "PValueTable"formatted table of -values
    "TestData"list of pairs of test statistics and -values
    "TestDataTable"formatted table of -values and test statistics
    "TestStatistic"list of test statistics
    "TestStatisticTable"formatted table of test statistics
  • If a known variance σ is not provided, PairedZTest performs a -test assuming the sample variance is the known variance for univariate data and Hotelling's test assuming the sample covariance is the known covariance for multivariate data.
  • Options include:
  • AlternativeHypothesis "Unequal"the inequality for the alternative hypothesis
    SignificanceLevel 0.05cutoff for diagnostics and reporting
    VerifyTestAssumptions Automaticwhat assumptions to verify
  • For tests of location, a cutoff is chosen such that is rejected if and only if . The value of used for the "TestConclusion" and "ShortTestConclusion" properties is controlled by the SignificanceLevel option. This value is also used in diagnostic tests of assumptions including tests for normality, equal variance, and symmetry. By default, is set to 0.05.
  • Named settings for VerifyTestAssumptions in PairedZTest include:
  • "Normality"verify that all data is normally distributed

Examples

open allclose all

Basic Examples  (3)

Test whether the mean of a population is zero:

The full test table:

Test whether the means of two dependent populations differ:

The mean of the differences:

At the 0.05 level, the mean of the differenced data is not significantly different from 0:

Compare the locations of dependent multivariate populations:

The mean of the differences:

At the 0.05 level, the mean of the differenced data is not significantly different from 0:

Scope  (13)

Testing  (10)

Test versus :

The -values are typically large when the mean is close to μ0:

The -values are typically small when the location is far from μ0:

Using Automatic is equivalent to testing for a mean of zero:

Test versus :

The -values are typically large when the mean is close to μ0:

The -values are typically small when the location is far from μ0:

Test whether the mean vector of a multivariate population is the zero vector:

Alternatively, test against {0.1,0,-0.05,0}:

Test whether the mean of differenced datasets is zero:

The -values are generally small when the mean is not zero:

The -values are generally large when the mean is zero:

Test whether the mean of differenced data is 3:

The order of the datasets affects the test results:

Test whether the mean vector of differenced multivariate datasets is the zero vector:

Alternatively, test against {1,0,-1,0}:

Create a HypothesisTestData object for repeated property extraction:

The properties available for extraction:

Extract some properties from a HypothesisTestData object:

The -value and test statistic:

Extract any number of properties simultaneously:

The -value and test statistic:

Reporting  (3)

Tabulate the test results:

Retrieve the entries from a test table for customized reporting:

Tabulate -values or test statistics:

The -value from the table:

The test statistic from the table:

Options  (8)

AlternativeHypothesis  (3)

A two-sided test is performed by default:

Test versus :

Perform a two-sided test or a one-sided alternative:

Test versus :

Test versus :

Test versus :

Perform tests with one-sided alternatives when μ0 is given:

Test versus :

Test versus :

SignificanceLevel  (2)

Set the significance level for diagnostic tests:

By default, 0.05 is used:

The significance level is also used for "TestConclusion" and "ShortTestConclusion":

VerifyTestAssumptions  (3)

By default, normality is tested:

Here, normality is assumed:

The result is the same, but a warning is issued:

Alternatively, use All:

Set the normality assumption to True:

Bypassing diagnostic tests can save compute time:

It is often useful to bypass diagnostic tests for simulation purposes:

The assumptions of the test hold by design, so a great deal of time can be saved:

The results are identical:

Applications  (1)

On average, a person's arm span is approximately equal to his or her height. A college rowing team was measured with the expectation that their arm spans would be significantly greater than their heights. Assume that the standard deviation for the height and arm span of the adult population is 0.4 ft.:

An estimate of the distribution for the difference in arm span and height:

The rowing team's arm spans are significantly greater than their heights:

You might also be interested in the ratio of arm span to height:

The PairedZTest should not be used to test this since the ratio of two normal random variables is not normal:

Properties & Relations  (6)

PairedZTest is equivalent to a ZTest for a single dataset:

For two datasets, the PairedZTest is equivalent to a ZTest of the paired differences:

The known variance:

If the variance of the population is unknown, the less powerful PairedTTest should be used:

The probability that the PairedZTest will return a -value smaller than the PairedTTest:

If the data can be paired, the PairedZTest is more powerful than the ZTest:

The paired test detects a significant difference where the unpaired test does not:

PairedZTest works with the values only when the input is a TimeSeries:

PairedZTest works with all the values together when the input is a TemporalData:

Test all the values only:

Test whether the means of the two paths are equal:

Possible Issues  (1)

PairedZTest requires that the data be normally distributed:

Use a median-based test:

Neat Examples  (1)

Compute the statistic when the null hypothesis is true:

The test statistic given a particular alternative:

Compare the distributions of the test statistics:

Wolfram Research (2010), PairedZTest, Wolfram Language function, https://reference.wolfram.com/language/ref/PairedZTest.html.

Text

Wolfram Research (2010), PairedZTest, Wolfram Language function, https://reference.wolfram.com/language/ref/PairedZTest.html.

CMS

Wolfram Language. 2010. "PairedZTest." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/PairedZTest.html.

APA

Wolfram Language. (2010). PairedZTest. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/PairedZTest.html

BibTeX

@misc{reference.wolfram_2023_pairedztest, author="Wolfram Research", title="{PairedZTest}", year="2010", howpublished="\url{https://reference.wolfram.com/language/ref/PairedZTest.html}", note=[Accessed: 19-March-2024 ]}

BibLaTeX

@online{reference.wolfram_2023_pairedztest, organization={Wolfram Research}, title={PairedZTest}, year={2010}, url={https://reference.wolfram.com/language/ref/PairedZTest.html}, note=[Accessed: 19-March-2024 ]}