作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我有这些数据:
df1 <- data.frame(name = c("apple", "apple", "apple", "orange", "orange"),
ID = c(1, 2, 3, 4, 5),
is_fruit = c("yes", "yes", "yes", "yes", "yes"))
我只想保留唯一的行,但忽略 ID
列,这样输出看起来像这样:
df2 <- data.frame(name = c("apple", "orange"),
ID = c(1, 4),
is_fruit = c("yes", "yes"))
df2
# name ID is_fruit
#1 apple 1 yes
#2 orange 4 yes
我该怎么做,最好使用 dplyr
?
最佳答案
你可以使用distinct
函数;通过显式指定变量,您可以保留仅基于这些列的唯一行;还有 ?distinct
:
If there are multiple rows for a given combination of inputs, only the first row will be preserved
distinct(df1, name, is_fruit, .keep_all = T)
# name ID is_fruit
#1 apple 1 yes
#2 orange 4 yes
关于r - 如何只保留唯一行而忽略一列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46245527/
我是一名优秀的程序员,十分优秀!