OuterJoinMerge {Trading} | R Documentation |
Returns all possible combinations of two dataframes
Description
Returns all possible combinations of two dataframes
Usage
OuterJoinMerge(df_a, df_b)
Arguments
df_a |
The first dataframe |
df_b |
The second dataframe |
Value
A dataframe with all combinations
Author(s)
Tasos Grivas <tasos@openriskcalculator.com>
Examples
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)
[Package Trading version 3.0 Index]