Other articles


  1. Feature Engineering for Machine Learning in Python

    嚯嚯嚯


    Chapter 1, 'Creating Features'.


    Selecting specific data types

    # Create subset of only the numeric columns
    so_numeric_df = so_survey_df.select_dtypes(include=['int', 'float'])
    
    # Print the column names contained in …
    read more