Skip to content

Commit

Permalink
one internal function missed the flag
Browse files Browse the repository at this point in the history
  • Loading branch information
RayStick committed Nov 27, 2024
1 parent 22ea46f commit 65a4e43
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion R/data_manipulation.R
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,15 @@ count_empty_desc <- function(table_df, table_colname) {

#' join_outputs
#'
#' This function is called within the map_metadata_compare function. \cr \cr
#' Internal Function: This function is called within the map_metadata_compare function. \cr \cr
#' Joins output dataframes from two sessions, on the column DataElement.
#'
#' @param session_1 Dataframe from session 1
#' @param session_2 Dataframe from session 2
#' @return Dataframe with information from session 1 and 2, joined on column DataElement.
#' @importFrom dplyr left_join join_by select contains
#' @keywords internal


join_outputs <- function(session_1, session_2) {
ses_join <- left_join(session_1, session_2, suffix = c("_ses1", "_ses2"), join_by(data_element))
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@
},
"SystemRequirements": null
},
"fileSize": "753.302KB",
"fileSize": "753.382KB",
"citation": [
{
"@type": "SoftwareSourceCode",
Expand Down
3 changes: 2 additions & 1 deletion man/join_outputs.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 65a4e43

Please sign in to comment.