Q:

Write a R program to create three vectors numeric data, character data and logical data. Display the content of the vectors and their type

0

Write a R program to create three vectors numeric data, character data and logical data. Display the content of the vectors and their type.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

a = c(1, 2, 5, 3, 4, 0, -1, -3)
b = c("Red", "Green", "White")
c = c(TRUE, TRUE, TRUE, FALSE, TRUE, FALSE)
print(a)
print(typeof(a))
print(b)
print(typeof(b))
print(c)
print(typeof(c))

Sample Output:

[1]  1  2  5  3  4  0 -1 -3
[1] "double"
[1] "Red"   "Green" "White"
[1] "character"
[1]  TRUE  TRUE  TRUE FALSE  TRUE FALSE
[1] "logical"

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now