Learn R Programming

IRanges (version 2.6.0)

DataFrame-utils: Common operations on DataFrame objects

Description

Common operations on DataFrame objects.

Arguments

See Also

DataTable, Vector, and RangedData, which makes heavy use of this class.

Examples

Run this code
## split

sw <- DataFrame(swiss)
swsplit <- split(sw, sw[["Education"]])
  
## rbind

do.call(rbind, as.list(swsplit))

## cbind

cbind(DataFrame(score), DataFrame(counts))

Run the code above in your browser using DataLab