R/relabel.R

Defines functions relabel

Documented in relabel

#' Relabels a column in a dataset for merging.
#'
#' @param column the tablename.
#' @param table the tablename.
#' @return A string of "column.table"
relabel <- function(column, table) { paste0(column, '.', table) }
SimonGreenhill/rcldf documentation built on April 25, 2024, 8:27 a.m.