powered by
Return the leftmost or rightmost or columns of a matrix or dataframe
right(x, n = 6) left(x, n=6)
Matrix or dataframe
Number of columns to return
An object consisting of the leftmost or rightmost n columns of x.
n
x
first, last, head, tail
first
last
head
tail
# NOT RUN { m <- matrix( 1:100, ncol=10 ) colnames(m) <- paste("Col",1:10, sep="_") left(m) right(m) d <- as.data.frame(m) left(d) right(d) # }
Run the code above in your browser using DataLab