如何计算单元格彼此匹配的数据帧中的行数

时间:2018-07-27 19:43:40

标签: r

我有两列(一列具有预测的值(以字符串表示),一列具有 real 值(以字符串表示),我希望评估其中的行数真实值或字符串相匹配的预测值或字符串在同一行中。

snapshot of the columns is shown in the link

我想知道R是否可以实现类似的功能?

1 个答案:

答案 0 :(得分:2)

# create sample dataset
df <- data.frame(
    col1 = c("a", "b", "c", "d", "e"),
    col2 = c("a", "x", "y", "z", "e"),
    stringsAsFactors = FALSE
)

# count the number of rows where two columns equal each other
sum( df$col1 == df$col2 )