शुरू करेंमुफ़्त में शुरू करें

Test for single proportions

In Chapter 1, you calculated a p-value for a test hypothesizing that the proportion of late shipments was greater than 6%. In that chapter, you used a bootstrap distribution to estimate the standard error of the statistic. A simpler alternative is to use an equation for the standard error based on the sample proportion, hypothesized proportion, and sample size.

\(z = \dfrac{\hat{p} - p_{0}}{\sqrt{\dfrac{p_{0}*(1-p_{0})}{n}}}\)

Let's revisit the p-value using this simpler calculation.

late_shipments is available; dplyr is loaded.

यह अभ्यास पाठ्यक्रम का हिस्सा है

Hypothesis Testing in R

पाठ्यक्रम देखें

इंटरैक्टिव व्यावहारिक अभ्यास

इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।

# Hypothesize that the proportion of late shipments is 6%
p_0 <- ___

# Calculate the sample proportion of late shipments
p_hat <- ___



# Calculate the sample size
n <- ___
कोड संपादित करें और चलाएँ