Get your own website Result Size: 625 x 565
x
 
fruits <- c("banana", "apple", "orange", "mango", "lemon")
# Access all items except for the first item
fruits[c(-1)]
[1] "apple" "orange" "mango" "lemon"