我遇到以下問題。參數'pattern'的長度> 1,並且僅使用第一個元素 - GSUB()
table <- data.frame(col1 = c("cars1 gm", "cars2 gl"), col2 = c("cars1 motor mel", "cars2 prom del"))
col1 col2
1 cars1 gm cars1 motor mel
2 cars2 gl cars2 prom del
table$word <- gsub(table$col1, ' ', table$col2)
警告消息:在GSUB(表$ COL1, 「」,表$ COL2):參數 '圖案' 具有長度> 1且僅第一個元素將被用來
如何創建一個名爲'word'的新列,其中只包含col1的值,而col1不會出現在col1中?
col1 col2 word
1 cars1 gm cars1 motor mel motor mel
2 cars2 gl cars2 prom del prom del