Login
Remember
Register
Ask a Question
What is the class of the object defined by x <- c(4, TRUE)?
0
votes
asked
Jun 15, 2023
in
R Basics
by
john ganales
What is the class of the object defined by x <- c(4, TRUE)?
r-object
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 15, 2023
by
john ganales
numeric
x <- c(4, TRUE)
class(x)
...