请,我要计算另一个分类变量中两个变量的置信区间的均值差。
我有兴趣计算p1,p2和pdiff的置信区间
非常感谢
library(tidyverse)
iris %>%
mutate(out1 = Sepal.Length < 6,
out2 = Sepal.Length < 5) %>%
group_by(Species) %>%
summarise(p1 = mean(out1),
p2 = mean(out2),
pdiff = p1 - p2)
# A tibble: 3 x 4
Species p1 p2 pdiff
<fct> <dbl> <dbl> <dbl>
1 setosa 1 0.4 0.6
2 versicolor 0.52 0.02 0.5
3 virginica 0.14 0.02 0.12
答案 0 :(得分:1)
获得置信区间的一种方法是通过import java.util.*;
class Main
{ public static void main(String args[]){
int n = 3;
if (n%2==0){
if (2<=n<=5){
System.out.println("Not Weird");
}
elseif (6<=n<=20){
System.out.println("Weird");
}
elseif(n>20){
System.out.println("Not Weird");
}
}
else{
System.out.println("Weird");
}
}
}
。您可以为每个指标(prop.test
,p1
,p2
)运行此测试,然后使用diff
提取所需的信息。
map