rbindUnion | R Documentation |
This function is an implementation of the functionality as in plyr::rbind.fill for not being dependent on that package. The function is no longer maintained, and it is advised to use data.table::rbind(...,fill) instead.
rbindUnion(...)
... |
data frames to stack. Must be of class data.frame. |
Consider using data.table::rbindlist(...,fill=TRUE) instead.
a data.frame containing all data
Other DataWrangling:
newNames()
,
rbindIntersect()
,
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))
pmxtricks:::rbindUnion(x,y,z)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.