powered by
Return the leftmost or rightmost or columns of a matrix or dataframe
right(x, n = 6) left(x, n=6)
An object consisting of the leftmost or rightmost n columns of x.
n
x
Matrix or dataframe
Number of columns to return
Gregory R. Warnes greg@warnes.net
first, last, head, tail
first
last
head
tail
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