Ask Question
14 March, 15:46

in R Programming, Create a vector with 10 numbers (3, 12, 6, - 5, 0, 8, 15, 1, - 10, 7) and assign it to x

+1
Answers (1)
  1. 14 March, 19:37
    0
    x < - c (3,12,6,-5,0,8,15,1,-10,7)

    Explanation:

    A vector is a data structure in R language. A vector is a collection of data elements of same type.

    Components are the member of the vector.

    c () : - It is a function known as concatenate. It is used to combine vectors. It does not create vectors.

    In the above a vector a vector with values mentioned in the question is created and assigned to x.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “in R Programming, Create a vector with 10 numbers (3, 12, 6, - 5, 0, 8, 15, 1, - 10, 7) and assign it to x ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers