1. 学习
  2. /
  3. 课程
  4. /
  5. Hypothesis Testing in R

Connected

练习

Specifying and hypothesizing

In Chapter 3, you ran a two sample proportion test on the proportion of late shipments across freight cost groups. Recall the hypotheses.

\(H_{0}\): \(late_{\text{expensive}} - late_{\text{reasonable}} = 0\)

\(H_{A}\): \(late_{\text{expensive}} - late_{\text{reasonable}} > 0\)

Let's compare that traditional approach using prop_test() with a simulation-based infer pipeline.

late_shipments is available; dplyr and infer are loaded.

说明 1 / 共 3 个

undefined XP
    1
    2
    3

问题

Run the proportion test code (previously seen in Chapter 3). Assuming a significance level of alpha = 0.05, what does the evidence suggest?

答案选项