Examveda

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

D. > x <- data.frame(foo = 14:1, bar = c(F, T, F, F))
> x

Answer: Option C


This Question Belongs to R Programming >> R Programming Basics

Join The Discussion

Related Questions on R Programming Basics