Write a R program to create a list containing a vector, a matrix and a list and give names to the elements in the list. Access the first and second element of the list
Write a R program to create a list containing a vector, a matrix and a list and give names to the elements in the list. Access the first and second element of the list.
Sample Output:
[1] "List:" [[1]] [1] "Red" "Green" "Black" [[2]] [,1] [,2] [,3] [1,] 1 5 9 [2,] 3 7 11 [[3]] [[3]][[1]] [1] "Python" [[3]][[2]] [1] "PHP" [[3]][[3]] [1] "Java" [1] "List with column names:" $Color [1] "Red" "Green" "Black" $`Odd numbers` [,1] [,2] [,3] [1,] 1 5 9 [2,] 3 7 11 $`Language(s)` $`Language(s)`[[1]] [1] "Python" $`Language(s)`[[2]] [1] "PHP" $`Language(s)`[[3]] [1] "Java" [1] "1st element:" $Color [1] "Red" "Green" "Black" [1] "2nd element:" $`Odd numbers` [,1] [,2] [,3] [1,] 1 5 9 [2,] 3 7 11need an explanation for this answer? contact us directly to get an explanation for this answer