运行 ❯
获取
你的
网站
×
更改方向
更改主题,深色/浅色
转到 Spaces
# Specify the sample mean (x_bar), the sample standard deviation (s), the mean claimed in the null-hypothesis (mu_null), and the sample size (n) x_bar <- 62.1 s <- 13.46 mu_null <- 60 n <- 30 # Calculate the test statistic test_stat = (x_bar - mu_null)/(s/sqrt(n)) # P-value the p-value of the test statistic (two tailed test) 2*(1-pt(test_stat, n-1))
[1] 0.3998078