Create a numeric vector called age whose elements contain the ages of three people you know, where the names of each element correspond to the names of those people. age<-c (26,29,30) names (age) <-c ("Al","Ani","Nav") age
## Al Ani Nav
## 26 29 30
+5
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Create a numeric vector called age whose elements contain the ages of three people you know, where the names of each element correspond to ...” in 📗 Mathematics if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Mathematics » Create a numeric vector called age whose elements contain the ages of three people you know, where the names of each element correspond to the names of those people. age<-c (26,29,30) names (age) <-c ("Al","Ani","Nav") age ## Al Ani Nav ## 26 29 30