From 65a4e43866c6bc8ca7f6d05bd463ab0e350cfb7c Mon Sep 17 00:00:00 2001 From: Rachael Stickland <50215726+RayStick@users.noreply.github.com> Date: Wed, 27 Nov 2024 11:32:42 +0000 Subject: [PATCH] one internal function missed the flag --- R/data_manipulation.R | 4 +++- codemeta.json | 2 +- man/join_outputs.Rd | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/R/data_manipulation.R b/R/data_manipulation.R index fae8fa0..4dd537d 100644 --- a/R/data_manipulation.R +++ b/R/data_manipulation.R @@ -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)) diff --git a/codemeta.json b/codemeta.json index 8f135ea..3b4ad1d 100644 --- a/codemeta.json +++ b/codemeta.json @@ -226,7 +226,7 @@ }, "SystemRequirements": null }, - "fileSize": "753.302KB", + "fileSize": "753.382KB", "citation": [ { "@type": "SoftwareSourceCode", diff --git a/man/join_outputs.Rd b/man/join_outputs.Rd index cd2bfe9..eef0a39 100644 --- a/man/join_outputs.Rd +++ b/man/join_outputs.Rd @@ -15,6 +15,7 @@ join_outputs(session_1, session_2) Dataframe with information from session 1 and 2, joined on column DataElement. } \description{ -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. } +\keyword{internal}