Ask Question
13 July, 00:38

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

+2
Answers (1)
  1. 13 July, 01:49
    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 you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers