Concatenate Elements - R (Concatenate Elements) Flashcards
1
Q
23) You can also concatenate, or join, two or more elements, by using the paste() function.
A
CE paste()
2
Q
24) To combine both text and a variable, R uses comma (,):
A
CE paste(“R is”, text)
3
Q
25) You can also use , to add a variable to another variable:
A
CE paste(text1, text2)
4
Q
26) For numbers, the + character works as a mathematical operator:
A
CE num1 + num2
5
Q
27) If you try to combine a string (text) and a number, R will give you an error:
A
CE num + text