OuterJoinMerge: Returns all possible combinations of two dataframes

View source: R/OuterJoinMerge.R

OuterJoinMergeR 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)

sa-ccr/Trading documentation built on Feb. 23, 2024, 9:26 p.m.