def main():
    input_file = "../../../../../Data/Processed/features/analytes/gap_analysis/lab_icu_freq_6hrs_temp.csv"
    output_file = "../../../../../Data/Processed/features/analytes/gap_analysis/lab_icu_freq_6hrs.csv"
    sum_count(input_file, output_file, 'component_name')
    return None
def main():
    input_file = "../../../../../Data/Processed/features/medications/gap_analysis/mar_no_icu_freq_temp.csv"
    output_file = "../../../../../Data/Processed/features/medications/gap_analysis/mar_no_icu_freq.csv"
    sum_count(input_file, output_file, 'medication_name', "cp1252")
    return None
Esempio n. 3
0
def main():
    sum_count(sys.argv[1], sys.argv[2], 'component_name', "ISO-8859-1")
    return None
def main():
    sum_count(sys.argv[1], sys.argv[2], 'flo_meas_name')
    return None
def main():
    input_file = "../../../../../Data/Processed/features/vitals/gap_analysis/flo_icu_freq_temp.csv"
    output_file = "../../../../../Data/Processed/features/vitals/gap_analysis/flo_icu_freq.csv"
    sum_count(input_file, output_file, 'flo_meas_name')
    return None