Replace_ex | R Documentation |
Replace Exactly
Replace_ex(x, from, to, pattern)
x |
vector, dataframe or matrix |
from |
replaced stings |
to |
replacements |
pattern |
a special pattern, see examples for detail |
replaced data
a=c(1,2,3,1,4)
Replace_ex(x = a,from = c(1,2),to=5)
Replace_ex(x=a,pattern = c('1:5','2:5'))
Replace_ex(x=a,pattern = '[12]:5')
a=data.frame(v=c(1,2,3,2,4),
b=c(7,8,9,4,6))
Replace_ex(x = a,from = c(1,2),to=5)
Replace_ex(x=a,pattern = c('1:5','2:5'))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.