我的数据集有很多行和6列,其中一个是country ("cntry").
我想按国家/地区组计算每个变量的均值。
cntry N mean(euftf) mean(trstep) mean(x)
BE 20 5.67 4.87 9.22
LK 32 4.33 6.77 9.87
我试过以下内容:
group_by(df, cntry) %>% summarize(m = mean(euftf))
......还有很多其他人。问题是我的表看起来不错,但无论我做什么,所有值都是NA,({1}}中已经省略了NA)。
有没有人知道为什么......?