functions/source/preprocess/preprocess.py [114:125]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    datetime_column_names = [
        'beg_effective_dt_tm',
        'end_effective_dt_tm',
        'collection_dt_tm',
        'admit_dt_tm',
        'disch_dt_tm',
        'first_activity_start_dt_tm',
        'last_activity_end_dt_tm',
    ]
    # Convert all date to to datetime format, the input data is mm-dd-yyyy
    for column_name in datetime_column_names:
        dataframe[column_name] = pd.to_datetime(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



functions/source/preprocess/preprocess.py [342:353]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    datetime_column_names = [
        'beg_effective_dt_tm',
        'end_effective_dt_tm',
        'collection_dt_tm',
        'admit_dt_tm',
        'disch_dt_tm',
        'first_activity_start_dt_tm',
        'last_activity_end_dt_tm',
    ]
    # Convert all date to to datetime format, the input data is mm-dd-yyyy
    for column_name in datetime_column_names:
        dataframe[column_name] = pd.to_datetime(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



