Write a R program to add a new item g4 = "Python" to a given list.
Sample list: (g1 = 1:10, g2 = "R Programming", g3 = "HTML")
list1 = list(g1 = 1:10, g2 = "R Programming", g3 = "HTML") print("Original list:") print(list1) print("Add a new vector to the said list:") list1$g4 = "Python" print(list1)
Sample Output:
[1] "Original list:" $g1 [1] 1 2 3 4 5 6 7 8 9 10 $g2 [1] "R Programming" $g3 [1] "HTML" [1] "Add a new vector to the said list:" $g1 [1] 1 2 3 4 5 6 7 8 9 10 $g2 [1] "R Programming" $g3 [1] "HTML" $g4 [1] "Python"
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer