Check Pipeline Function Availability
Source:R/process_employment_pipeline.R
check_pipeline_functions.RdUtility function to check which pipeline functions are available in the current environment. This helps users understand what pipeline steps can be executed.
Value
A named logical vector indicating which functions are available:
vecshift: Core transformation functionmerge_original_columns: Column merging functionmerge_overlapping_values: Overlap handling functionmerge_consecutive_employment: Period consolidation with over_idmerge_consecutive_employment_fast: Traditional consecutive merging
Examples
if (FALSE) { # \dontrun{
# Check which functions are available
availability <- check_pipeline_functions()
print(availability)
# Use availability to conditionally run pipeline steps
if (availability["merge_original_columns"]) {
# Can safely merge columns
}
} # }