R 数据集上的分组、计数和选择
我有一个像这样的数据集:
x
A B
1 x 2
2 y 4
3 z 4
4 x 4
5 x 4
6 x 3
......
我想知道在这个数据集中是否存在相同数量的“A”高于某个值(例如3)。
可能我需要将这个值分组到一个临时表中,得到这个:
X Y z
4 1 1
然后我将调用另一个方法(我不知道),它给我这个结果
X,
因为只有值X在我的中出现超过3次上一张表。 R 可以优化这个操作吗?
I have a dataset like this:
x
A B
1 x 2
2 y 4
3 z 4
4 x 4
5 x 4
6 x 3
......
I want to know if in this dataset are present a same number of "A" upper than some value(for example 3).
Probably i will need to group this value in a temporary table getting this:
X Y z
4 1 1
and after this i will call another method (that i don't know) that gives me this result
X
because only the value X is present more than 3 times in my previous table.
Can R optimise this operation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要获取每个字母的计数,请执行以下操作
并获取具有 > 的因子名称3
To get the count of each letter, do
and to get the name of the factors with > 3
不知道我的理解是否正确……这个 B 栏是怎么回事?
这对你有用吗?
Don´t know if I understand you right... whats with this B column?
Is this working for you?