View source: R/rbindIntersect.R
rbindIntersect | R Documentation |
rbind data.frames by using only common columns
rbindIntersect(...)
... |
data frames to stack. Must be of class data.frame. |
a data.frame containing all data
Other DataWrangling:
newNames()
,
rbindUnion()
,
roundDF()
,
roundResp0()
x <- data.frame(a=1:3)
y <- data.frame(b=1:3,c="h")
z <- data.frame(a=4:5,b=letters[4:5],d=c(NA,5))
rbindIntersect(x,y,z)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.