Vidyalelo
R Programming · Q76

R Programming Basics

Programming · R Programming · question 76

Q76

What will be the Correct R code for the following output? foo bar 1 1 TRUE 2 2 TRUE 3 3 FALSE 4 4 FALSE

A.
> x <- data.frame(foo = 1:4, bar = c(F, T, F, F))
> x
B.
> x <- data.frame(foo = 1:6, bar = c(F, T, F, F))
> x
C.
> x <- data.frame(foo = 1:4, bar = c(T, T, F, F))
> x
Answer
D.
> x <- data.frame(foo = 14:1, bar = c(F, T, F, F))
> x

Answer: Option C

Solution

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