R 語言中的 replace() 函數用於將指定字符串向量 x 中的值替換為列表中給出的索引值中給出的值。
用法: replace(x, list, values)
參數:
x:向量
list: index
values:替換值
範例1:
# R program to illustrate
# replace function
# Initializing a string vector
x <- c("GFG", "gfg", "Geeks")
# Getting the strings
x
# Calling replace() function to replace
# the word gfg at index 2 with the
# GeeksforGeeks element
y <- replace(x, 2, "GeeksforGeeks")
# Getting the new replaced strings
y
輸出:
[1] "GFG" "gfg" "Geeks" [1] "GFG" "GeeksforGeeks" "Geeks"
範例2:
# R program to illustrate
# replace function
# Initializing a string vector
x <- c("GFG", "gfg", "Geeks")
# Getting the strings
x
# Calling replace() function to replace
# the word GFG at index 1 and Geeks at
# index 3 with the A and B elements
# respectively
y <- replace(x, c(1, 3), c("A", "B"))
# Getting the new replaced strings
y
輸出:
[1] "GFG" "gfg" "Geeks" [1] "A" "gfg" "B"
相關用法
- R語言 as.vector()用法及代碼示例
- R語言 is.vector()用法及代碼示例
- R語言 make.unique()用法及代碼示例
- R語言 seq()用法及代碼示例
- R語言 diff()用法及代碼示例
- R語言 median()用法及代碼示例
- R語言 sign()用法及代碼示例
- R語言 rep()用法及代碼示例
- R語言 append()用法及代碼示例
- R語言 charmatch()用法及代碼示例
- R語言 substring()用法及代碼示例
- R語言 str_detect()用法及代碼示例
- R語言 as.factor()用法及代碼示例
- R語言 sort()用法及代碼示例
- R語言 range()用法及代碼示例
- R語言 cut()用法及代碼示例
- R語言 rank()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Replace the Elements of a Vector in R Programming – replace() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。