在R語言中,replace函數用于替換向量中的特定元素。
使用方法如下:
replace(x, condition, value)
參數說明:
示例:
x <- c(1, 2, 3, 4, 5)
condition <- c(TRUE, FALSE, TRUE, FALSE, TRUE)
replace(x, condition, 10)
輸出:
[1] 10 2 10 4 10
在上面的例子中,我們將x中滿足條件為TRUE的元素替換為10,結果輸出為[10, 2, 10, 4, 10]。