File size: 2,576 Bytes
13fb76e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
"""
Preliminary preprocessing on the data, such as:
- correcting column names
- encoding the target column
"""

import pandas as pd
from sklearn import preprocessing

COLUMNS_TO_DROP = ["Unnamed: 133"]
TARGET_COLUMN = ["prognosis"]
RENAME_COLUMNS = {
    "scurring": "scurving",
    "dischromic _patches": "dischromic_patches",
    "spotting_ urination": "spotting_urination",
    "foul_smell_of urine": "foul_smell_of_urine",
}


def pretty_print(input):
    """
    Prettify the input.

    Args:
        input: Can be a list of symtoms or a disease.

    Returns:
        list: Sorted and prettified input.
    """
    # Convert to a list if necessary
    if isinstance(input, list):
        input = list(input)

    # Flatten the list if required
    pretty_list = []
    for item in input:
        if isinstance(item, list):
            pretty_list.extend(item)
        else:
            pretty_list.append(item)

    # Sort and prettify the input
    pretty_list = sorted([" ".join((item.split("_"))).title() for item in pretty_list])

    return pretty_list


def map_prediction(target_columns=["y", "prognosis"]):
    df = pd.read_csv("Training_preprocessed.csv")
    relevent_df = df[target_columns].drop_duplicates().relevent_df.where(df["y"] == 1)
    prediction = relevent_df[target_columns[1]].dropna().values[0]
    return prediction


if __name__ == "__main__":

    # Load data
    df_train = pd.read_csv("Training.csv")
    df_test = pd.read_csv("Testing.csv")

    # Remove unseless columns
    df_train.drop(columns=COLUMNS_TO_DROP, axis=1, errors="ignore", inplace=True)
    df_test.drop(columns=COLUMNS_TO_DROP, axis=1, errors="ignore", inplace=True)

    # Correct some typos in some columns name
    df_train.rename(columns=RENAME_COLUMNS, inplace=True)
    df_test.rename(columns=RENAME_COLUMNS, inplace=True)

    # Convert y category labels to y
    label_encoder = preprocessing.LabelEncoder()
    label_encoder.fit(df_train[TARGET_COLUMN].values.flatten())

    df_train["y"] = label_encoder.transform(df_train[TARGET_COLUMN].values.flatten())
    df_test["y"] = label_encoder.transform(df_test[TARGET_COLUMN].values.flatten())

    # Cast X features from int64 to float32
    float_columns = df_train.columns.drop(TARGET_COLUMN)
    df_train[float_columns] = df_train[float_columns].astype("float32")
    df_test[float_columns] = df_test[float_columns].astype("float32")

    # Save preprocessed data
    df_train.to_csv(path_or_buf="Training_preprocessed.csv", index=False)
    df_test.to_csv(path_or_buf="Testing_preprocessed.csv", index=False)