Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个名为 IMS 的数据集,由 11 个变量组成。 强文本
我想计算变量pi == 1的所有观察值的变量std.y的平均值。
谁能告诉我如何计算这个?:)
最好的问候,亨里克
mean(IMS$std.y[IMS$pi==1])
这是您可以从 R 上的大多数介绍性文本中获得的内容 - 我建议您在此处发布问题之前先阅读这些内容。