Lumenize icon indicating copy to clipboard operation
Lumenize copied to clipboard

R function head()

Open jmaccherone opened this issue 12 years ago • 0 comments

Takes two parameters, a list and a number, returns the number of items given from the list starting at the beginning.

List <- c("a","b","c", "d", "e") head(list, 2) "a" "b"

jmaccherone avatar May 17 '13 15:05 jmaccherone