Description Usage Arguments Value Author(s) Examples
View source: R/get_template_merge.R
Goes through the template load data to retrieve all the attributes mentionned.
1 | get_template_merge(table_x, table_y, result, by_x, by_y, type_of_merge)
|
table_x |
The second table. Type = character |
result |
The dataframe resulting from the merge. Type = character. |
by_x |
The attributes from the first table used for the merge. Type = character |
by_y |
The attributes from the second table used for the merge. Type = character |
type_of_merge |
The type ofmerging chosen. Either "left", "right", "inner" or "full". Type = character |
A string with the correct format for merging.
Briac LE RAY (briac.leray@partnre.com)
1 | get_template_merge(table_x = my_dataframe_1, table_y = my_dataframe_2, result = my_dataframe_3, by_x = "c('attribute_1', 'attribute_2')", by_y = "c('attribute_3', 'attribute_4')", type_of_merge = "left")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.