Q. Which of the following statement would print "0" "1" "2" "3" "4" "5" "6" for the following R code?
> x <- 0:6
β
Correct Answer: (A)
as.character(x)
You must be Logged in to update hint/solution