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()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

24) To combine both text and a variable, R uses comma (,):

A

CE paste(“R is”, text)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

25) You can also use , to add a variable to another variable:

A

CE paste(text1, text2)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

26) For numbers, the + character works as a mathematical operator:

A

CE num1 + num2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

27) If you try to combine a string (text) and a number, R will give you an error:

A

CE num + text

How well did you know this?
1
Not at all
2
3
4
5
Perfectly