w3resource

R Programming: Create a list containing strings, numbers, vectors and a logical values

R Programming: List Exercise-7 with Solution

Write a R program to create a list containing a vector, a matrix and a list and update the last element.

Sample Solution :

R Programming Code :

list_data <- list(c("Red","Green","Black"), matrix(c(1,3,5,7,9,11), nrow = 2),
list("Python"))
print("List:")
print(list_data)
print("Update the second element of the list:")
list_data[3] =  "R programming"
print("New list:")
print(list_data)

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"


[1] "Update the second element of the list:"
[1] "New list:"
[[1]]
[1] "Red"   "Green" "Black"

[[2]]
     [,1] [,2] [,3]
[1,]    1    5    9
[2,]    3    7   11

[[3]]
[1] "R programming"                         

R Programming Code Editor:



Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a R program to create a list containing a vector, a matrix and a list and remove the second element.
Next: Write a R program to merge two given lists into one list.

Test your Programming skills with w3resource's quiz.

What is the difficulty level of this exercise?



Follow us on Facebook and Twitter for latest update.