Customer Analytics - Preparing Data for Modeling (Guided)
  • AI Chat
  • Code
  • Report
  • Beta
    Spinner

    A common problem when creating models to generate business value from data is that the datasets can be so large that it can take days for the model to generate predictions. Ensuring that your dataset is stored as efficiently as possible is crucial for allowing these models to run on a more reasonable timescale without having to reduce the size of the dataset.

    You've been hired by a major online data science training provider called Training Data Ltd. to clean up one of their largest customer datasets. This dataset will eventually be used to predict whether their students are looking for a new job or not, information that they will then use to direct them to prospective recruiters.

    You've been given access to customer_train.csv, which is a subset of their entire customer dataset, so you can create a proof-of-concept of a much more efficient storage solution. The dataset contains anonymized student information, and whether they were looking for a new job or not during training:

    ColumnDescription
    student_idA unique ID for each student.
    cityA code for the city the student lives in.
    city_development_indexA scaled development index for the city.
    genderThe student's gender.
    relevant_experienceAn indicator of the student's relevant experience.
    enrolled_universityThe type of university course enrolled in (if any).
    education_levelThe student's education level.
    major_disciplineThe educational discipline of the student.
    experienceThe student's total experience (in years).
    company_sizeThe number of employees at the student's current employer.
    last_new_jobThe number of years between the student's current and previous jobs.
    training_hoursThe number of hours of training completed.
    job_changeAn indicator of whether the student is looking for a new job (1) or not (0).
    # Start your code here!
    import pandas as pd
    df = pd.read_csv('customer_train.csv')
    df.head()
    # Examine existing data
    df.info()
    for col in df.columns:
        print(col, df[col].value_counts())
        print()
        
    df.describe()
    df.columns

    Converting types

    # Columns containing integers must be stored as 32-bit integers (int32).
    for col in ['student_id', 'training_hours']:
        df[col] = df[col].astype('int32')
    # Columns containing floats must be stored as 16-bit floats (float16).
    for col in ['city_development_index', 'job_change']: 
        df[col] =  df[col].astype('float16')
    # Columns containing nominal categorical data must be stored as the category data type
    for col in ['gender', 'relevant_experience', 'enrolled_university', 'education_level', 'major_discipline']:
        df[col] = df[col].astype('category')
    # Checking converted types
    df.dtypes

    Creating ordered categorical data types

    # Order the 'experience' category
    print(df['experience'].unique())
    experience_levels = pd.CategoricalDtype(['<1','1','2','3','4','5', '6','7', '8','9','10','11', '12','13', '14','15', '16','17','18','19','20','>20'], ordered=True)
    df['experience'] = df['experience'].astype(experience_levels)