r - How add two text objects -


how add sum information 2 texts? example:

obj1 <- c("a","e","i","o","u") 

now, how can have object “ba”, “be”,… “bu”? tried:

obj2=c("b"+ obj1) 

but doesn't work.

if in r,

obj1 = c("a","e","i","o","u") obj2 = paste("b", obj1,sep='')` 

Comments

Popular posts from this blog

node.js - Mongoose: Cast to ObjectId failed for value on newly created object after setting the value -

gradle error "Cannot convert the provided notation to a File or URI" -

python - NameError: name 'subprocess' is not defined -