View source: R/OuterJoinMerge.R
OuterJoinMerge | R Documentation |
Returns all possible combinations of two dataframes
OuterJoinMerge(df_a, df_b)
df_a |
The first dataframe |
df_b |
The second dataframe |
A dataframe with all combinations
Tasos Grivas <tasos@openriskcalculator.com>
df_a = data.frame(matrix(seq(1,20),nrow = 5, ncol = 4))
df_b = data.frame(matrix(seq(21,40),nrow = 5, ncol = 4))
joined_df = OuterJoinMerge(df_a, df_b)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.