> "[" is a function, and you want to use it on each element of the list, > so... > > lapply(x, "[", c(1:7)) and the call to c() is of course not necessary, since ":" will generate a vector.