Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What is the class of the object defined by x <- c(4, TRUE)?
Home
R Basics
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)
...