Closed r-re closed 6 years ago
diffTab is 1 element shorter than object@name. Therefore, object@name[-nrow(diffTab)]does not delete the last element of object@name, but the next-to-last.
object@name[-nrow(diffTab)]
object@name
Does this make sense?
nice catch, thanks!
diffTab is 1 element shorter than object@name. Therefore,
object@name[-nrow(diffTab)]
does not delete the last element ofobject@name
, but the next-to-last.Does this make sense?