| sf_assign | R Documentation | 
Assigns a new string to a stringfish vector or any other character vector
sf_assign(x, i, e)
| x | the vector | 
| i | the index to assign to | 
| e | the new string to replace at i in x | 
A function to assign a new element to an existing character vector. If the the vector is a stringfish vector, it does so without materialization.
No return value, the function assigns an element to an existing stringfish vector
if(getRversion() >= "3.5.0") {
x <- sf_vector(10)
sf_assign(x, 1, "hello world")
sf_assign(x, 2, "another string")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.