How to get vector type in R

3 Answers

0 votes
vec <- c(4, 6, 8, 1, 5)
 
print(typeof(vec))
 
 
 
 
# run:
#
# [1] "double"
#

 



answered Jun 23, 2021 by avibootz
edited Jun 23, 2021 by avibootz
0 votes
vec <- c(9, 8, 3.14, TRUE, "r programming")

print(typeof(vec))




# run:
#
# [1] "character"
#

 



answered Jun 23, 2021 by avibootz
0 votes
vec <- c(4L, 6L, 8L, 1L, 5L)
  
print(typeof(vec))
  
  
  
  
  
# run:
#
# [1] "integer"
#

 



answered Jul 3, 2021 by avibootz

Related questions

1 answer 167 views
1 answer 149 views
1 answer 172 views
1 answer 133 views
133 views asked Jun 23, 2021 by avibootz
2 answers 265 views
1 answer 220 views
...