我有两列(一列具有预测的值(以字符串表示),一列具有 real 值(以字符串表示),我希望评估其中的行数真实值或字符串与相匹配的预测值或字符串在同一行中。
我想知道R是否可以实现类似的功能?
答案 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 )