One Sample Mean t-test ====================== Choose Stats> One Sample Mean t-test .. image:: images/1sample_t1.png :align: center - **Sample Values:** This column contains the sampled values, which must be numerical and continuous. - **Summarized Data:** If you know the statistical descriptions of the sampled values, fill in `N` (the count of the sampled values), `Std Dev` (the standard deviation of the sampled values), and the mean. This information will override the sampled values selected above. - **Hypothesis Test:** The hypothesized mean value of the population. - **Alpha:** The significance level used in the calculation. For example, for confidence intervals, the range is (1-alpha)100%. A one-sample t-test is a statistical procedure used to determine whether the mean of a single sample differs significantly from a known or hypothesized population mean. In a one-sample t-test, we're comparing a sample mean to a hypothesized population mean (often called μ₀ or a test value). While the sample mean (x̄) is indeed a specific calculated number from our data, the key idea is that we're testing whether this sample mean could reasonably have come from a population with our hypothesized mean. For example, if we calculate a sample mean of 72.5 from our data and we're testing against a hypothesized population mean of 70, we're not asking if 72.5 exactly equals 70 (which it clearly doesn't). Instead, we're asking whether the difference between 72.5 and 70 is large enough to conclude that our sample likely came from a population with a different mean, or if this difference could reasonably occur by chance when sampling from a population with mean 70. This is why we use concepts like sampling distribution and probability to make this determination, rather than strict numerical equality. .. code-block:: none ---- One sample t ---- mean = 1.141 SD = 1.222 t = -0.580 df = 19.000 u0 = 1.300 Two-tailed test H0 u==u0, H1 u!=u0: p = 0.569 P-value is the prob of that population mean equals the specified value, which the samples came from. 95.00% range of population mean which the samples came from: (0.570, 1.713) H0 u==u0, H1 u>u0 p value = 0.716 95.00% Lower bound of population mean: 0.669 H0 u==u0, H1 u μ0. This is known as a one-tailed or directional test. If H0 is rejected, we accept that the true mean is greater than μ0, which is precisely what H1 states.