Ask Question
4 December, 12:24

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)
  1. 4 December, 12:42
    0
    age<-c (20,30,40)

    names (age) <-c ("ELI", "ALI", "JON") age

    ## ELI ALI JON

    ## 20 30 40

    Step-by-step explanation:

    The above given vector named age consists of three elements. Each element consists of ages of three people, ELI, ALI and JON, such that 20 corresponds to ELI, 30 to ALI and 40 to JON.
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.
Search for Other Answers