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 -

[C++][SFML 2.2] Strange Performance Issues - Moving Mouse Lowers CPU Usage -

ios - Possible to get UIButton sizeThatFits to work? -