View source: R/rbind_datasets.R
rbind_datasets | R Documentation |
x
and y
by row taking care of making all sets unique.Combine datasets x
and y
by row taking care of making all sets unique.
rbind_datasets(x, y)
x , y |
|
matrix()|
data.frame()'
A dataset.
x <- data.frame(f1 = 5:10, f2 = 10:5, set = 1:6)
y <- data.frame(f1 = 15:20, f2 = 20:15, set = 1:6)
rbind_datasets(x,y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.