0 votes
in R Basics by

If I execute the expression x <- 4 in R, what is the class of the object 'x' as determined by the `class()' function?

1 Answer

0 votes
by
numeric

x <- 4

class(x)

Related questions

0 votes
asked Jun 15, 2023 in R Basics by john ganales
0 votes
asked Jun 15, 2023 in R Basics by john ganales
...