Vidyalelo
R Programming · Q87

Data Manipulation with dplyr

Programming · R Programming · question 87

Q87

What will be the output of the following R code? > set.seed(10) > x str(x)

A.
int [1:100] 1 0 0 1 0 0 0 0 1 0 ...
Answer
B.
int [1:100] 10 0 01 1 0 0 01 0 1 0 ...
C.
int [1:100] 1 03 0 1 0 0 0 02 1 0 ...
D.
int [1:100] 1 2 3 1 1 0 0 0 1 0 ...

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board