Example 1: check if column contains string in vector r. v <- c('a','b','c','e') 'b' %in% v ## returns TRUE match('b',v) ## returns the first location of 'b' ...
確定! 回上一頁