What is R lists?
Answer / Sushmita Kesari
R lists are a collection of objects, which can be elements of different types (vectors, matrices, data frames, etc.). Lists provide a way to store complex data structures and can be manipulated using various functions like length(), names(), c() to combine lists, and others.
| Is This Answer Correct ? | 0 Yes | 0 No |
Why R language?
Why is R Good for business?
Vector v is c(1,2,3,4) and list x is list(5:8), what is the output of v*x[[1]]?
What is the apply() family in r?
How do I sort in descending order in r?
I have a string “contact@dataflair.com”. Which string function can be used to split the string into two different strings “contact@dataflair” and “com”?
X is the vector c(5,9.2,3,8.51,na), what is the output of mean(x)?
How many methods are available to use the matrices?
How would you extract one particular word from a string?
What is the function in r?
Differentiate between k-means clustering and hierarchical clustering?
What is a white noise model?