Description Usage Arguments Value Examples
Join with diagnostic output. Joins are implemented via dplyr join functions.
| 1 | 
| x, y | Dataframes to join. | 
| by | Character vector giving the name(s) of columns to be used for merging. | 
| join | String specifying type of join: valid join types are "inner", "left", "right", "full", "semi" and "anti". | 
| wt | Optional weighting variable (as character) used weight match rate diagnostics. | 
| flag_source | Logical, whether to add two variables ( | 
| ... | Additional parameters passed to  | 
Merged data frame.
| 1 2 3 | x <- data.frame(a = LETTERS[1:10], b = 1:10, stringsAsFactors = F)
y <- data.frame(a = LETTERS[6:15], c = 6:15, stringsAsFactors = F)
vjoin(x, y, by = "a", join = "full")
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.