powered by
Returns all possible combinations of two dataframes
OuterJoinMerge(df_a, df_b)
A dataframe with all combinations
The first dataframe
The second dataframe
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)
Run the code above in your browser using DataLab