Beginner R
Q5 / 100

How do you create a vector containing the numbers 1, 2, and 3?

Correct! Well done.

Incorrect.

The correct answer is B) c(1, 2, 3)

B

Correct Answer

c(1, 2, 3)

Explanation

c() is the combine function used to create vectors by combining individual values.

Progress
5/100