标签: r data-manipulation
id <- 3 nobs <- 243 A3 <- data.frame(id, nobs) B3 <- 243 > A3 id nobs 1 3 243
我正在尝试比较A3的nobs,这是243对B3
as
identical(A3$nobs[[1]] == B3[[1]])
给我错误
相同错误(A3 $ nobs [[1]] == B3 [1])
如何比较数据框的列值与否?