This function performs various validations on the cohortData tibble to ensure its integrity and correctness. The validations include:
Details
Checking if cohortData is a tibble.
Checking if the cohortData tibble contains the required column names: cohort_name, person_source_value, cohort_start_date, cohort_end_date.
Validating the types of cohort_name, person_source_value, cohort_start_date, and cohort_end_date columns (character and Date types, respectively).
Checking for missing values in cohort_name and person_source_value columns.
Verifying the order of cohort_start_date and cohort_end_date, ensuring cohort_start_date is older than cohort_end_date.