0 votes
in R Basics by

What is the class of the object defined by x <- c(4, TRUE)?

1 Answer

0 votes
by
numeric

x <- c(4, TRUE)

class(x)
...