[New Book] Click to get The Beginner's Guide to Data Science!
Use the offer code 20offearlybird to get 20% off. Hurry, sale ends soon!

How to Perform Feature Selection for Regression Data

Feature selection is the process of identifying and selecting a subset of input variables that are most relevant to the target variable.

Perhaps the simplest case of feature selection is the case where there are numerical input variables and a numerical target for regression predictive modeling. This is because the strength of the relationship between each input variable and the target can be calculated, called correlation, and compared relative to each other.

In this tutorial, you will discover how to perform feature selection with numerical input data for regression predictive modeling.

After completing this tutorial, you will know:

  • How to evaluate the importance of numerical input data using the correlation and mutual information statistics.
  • How to perform feature selection for numerical input data when fitting and evaluating a regression model.
  • How to tune the number of features selected in a modeling pipeline using a grid search.

Kick-start your project with my new book Data Preparation for Machine Learning, including step-by-step tutorials and the Python source code files for all examples.

Let’s get started.

How to Perform Feature Selection for Regression Data

How to Perform Feature Selection for Regression Data
Photo by Dennis Jarvis, some rights reserved.

Tutorial Overview

This tutorial is divided into four parts; they are:

  1. Regression Dataset
  2. Numerical Feature Selection
    1. Correlation Feature Selection
    2. Mutual Information Feature Selection
  3. Modeling With Selected Features
    1. Model Built Using All Features
    2. Model Built Using Correlation Features
    3. Model Built Using Mutual Information Features
  4. Tune the Number of Selected Features

Regression Dataset

We will use a synthetic regression dataset as the basis of this tutorial.

Recall that a regression problem is a problem in which we want to predict a numerical value. In this case, we require a dataset that also has numerical input variables.

The make_regression() function from the scikit-learn library can be used to define a dataset. It provides control over the number of samples, number of input features, and, importantly, the number of relevant and redundant input features. This is critical as we specifically desire a dataset that we know has some redundant input features.

In this case, we will define a dataset with 1,000 samples, each with 100 input features where 10 are informative and the remaining 90 are redundant.

The hope is that feature selection techniques can identify some or all of those features that are relevant to the target, or, at the very least, identify and remove some of the redundant input features.

Once defined, we can split the data into training and test sets so we can fit and evaluate a learning model.

We will use the train_test_split() function form scikit-learn and use 67 percent of the data for training and 33 percent for testing.

Tying these elements together, the complete example of defining, splitting, and summarizing the raw regression dataset is listed below.

Running the example reports the size of the input and output elements of the train and test sets.

We can see that we have 670 examples for training and 330 for testing.

Now that we have loaded and prepared the dataset, we can explore feature selection.

Want to Get Started With Data Preparation?

Take my free 7-day email crash course now (with sample code).

Click to sign-up and also get a free PDF Ebook version of the course.

Numerical Feature Selection

There are two popular feature selection techniques that can be used for numerical input data and a numerical target variable.

They are:

  1. Correlation Statistics.
  2. Mutual Information Statistics.

Let’s take a closer look at each in turn.

Correlation Feature Selection

Correlation is a measure of how two variables change together. Perhaps the most common correlation measure is Pearson’s correlation that assumes a Gaussian distribution to each variable and reports on their linear relationship.

For numeric predictors, the classic approach to quantifying each relationship with the outcome uses the sample correlation statistic.

— Page 464, Applied Predictive Modeling, 2013.

For more on linear or parametric correlation, see the tutorial:

Linear correlation scores are typically a value between -1 and 1 with 0 representing no relationship. For feature selection, we are often interested in a positive score with the larger the positive value, the larger the relationship, and, more likely, the feature should be selected for modeling. As such the linear correlation can be converted into a correlation statistic with only positive values.

The scikit-learn machine library provides an implementation of the correlation statistic in the f_regression() function. This function can be used in a feature selection strategy, such as selecting the top k most relevant features (largest values) via the SelectKBest class.

For example, we can define the SelectKBest class to use the f_regression() function and select all features, then transform the train and test sets.

We can then print the scores for each variable (largest is better) and plot the scores for each variable as a bar graph to get an idea of how many features we should select.

Tying this together with the data preparation for the dataset in the previous section, the complete example is listed below.

Running the example first prints the scores calculated for each input feature and the target variable.

Note: Your results may vary given the stochastic nature of the algorithm or evaluation procedure, or differences in numerical precision. Consider running the example a few times and compare the average outcome.

We will not list the scores for all 100 input variables as it will take up too much space. Nevertheless, we can see that some variables have larger scores than others, e.g. less than 1 vs. 5, and others have a much larger scores, such as Feature 9 that has 101.

A bar chart of the feature importance scores for each input feature is created.

The plot clearly shows 8 to 10 features are a lot more important than the other features.

We could set k=10 When configuring the SelectKBest to select these top features.

Bar Chart of the Input Features (x) vs. Correlation Feature Importance (y)

Bar Chart of the Input Features (x) vs. Correlation Feature Importance (y)

Mutual Information Feature Selection

Mutual information from the field of information theory is the application of information gain (typically used in the construction of decision trees) to feature selection.

Mutual information is calculated between two variables and measures the reduction in uncertainty for one variable given a known value of the other variable.

You can learn more about mutual information in the following tutorial.

Mutual information is straightforward when considering the distribution of two discrete (categorical or ordinal) variables, such as categorical input and categorical output data. Nevertheless, it can be adapted for use with numerical input and output data.

For technical details on how this can be achieved, see the 2014 paper titled “Mutual Information between Discrete and Continuous Data Sets.”

The scikit-learn machine learning library provides an implementation of mutual information for feature selection with numeric input and output variables via the mutual_info_regression() function.

Like f_regression(), it can be used in the SelectKBest feature selection strategy (and other strategies).

We can perform feature selection using mutual information on the dataset and print and plot the scores (larger is better) as we did in the previous section.

The complete example of using mutual information for numerical feature selection is listed below.

Running the example first prints the scores calculated for each input feature and the target variable.

Note: Your results may vary given the stochastic nature of the algorithm or evaluation procedure, or differences in numerical precision. Consider running the example a few times and compare the average outcome.

Again, we will not list the scores for all 100 input variables. We can see many features have a score of 0.0, whereas this technique has identified many more features that may be relevant to the target.

A bar chart of the feature importance scores for each input feature is created.

Compared to the correlation feature selection method we can clearly see many more features scored as being relevant. This may be because of the statistical noise that we added to the dataset in its construction.

Bar Chart of the Input Features (x) vs. the Mutual Information Feature Importance (y)

Bar Chart of the Input Features (x) vs. the Mutual Information Feature Importance (y)

Now that we know how to perform feature selection on numerical input data for a regression predictive modeling problem, we can try developing a model using the selected features and compare the results.

Modeling With Selected Features

There are many different techniques for scoring features and selecting features based on scores; how do you know which one to use?

A robust approach is to evaluate models using different feature selection methods (and numbers of features) and select the method that results in a model with the best performance.

In this section, we will evaluate a Linear Regression model with all features compared to a model built from features selected by correlation statistics and those features selected via mutual information.

Linear regression is a good model for testing feature selection methods as it can perform better if irrelevant features are removed from the model.

Model Built Using All Features

As a first step, we will evaluate a LinearRegression model using all the available features.

The model is fit on the training dataset and evaluated on the test dataset.

The complete example is listed below.

Running the example prints the mean absolute error (MAE) of the model on the training dataset.

Note: Your results may vary given the stochastic nature of the algorithm or evaluation procedure, or differences in numerical precision. Consider running the example a few times and compare the average outcome.

In this case, we can see that the model achieves an error of about 0.086.

We would prefer to use a subset of features that achieves an error that is as good or better than this.

Model Built Using Correlation Features

We can use the correlation method to score the features and select the 10 most relevant ones.

The select_features() function below is updated to achieve this.

The complete example of evaluating a linear regression model fit and evaluated on data using this feature selection method is listed below.

Running the example reports the performance of the model on just 10 of the 100 input features selected using the correlation statistic.

Note: Your results may vary given the stochastic nature of the algorithm or evaluation procedure, or differences in numerical precision. Consider running the example a few times and compare the average outcome.

In this case, we see that the model achieved an error score of about 2.7, which is much larger than the baseline model that used all features and achieved an MAE of 0.086.

This suggests that although the method has a strong idea of what features to select, building a model from these features alone does not result in a more skillful model. This could be because features that are important to the target are being left out, meaning that the method is being deceived about what is important.

Let’s go the other way and try to use the method to remove some redundant features rather than all redundant features.

We can do this by setting the number of selected features to a much larger value, in this case, 88, hoping it can find and discard 12 of the 90 redundant features.

The complete example is listed below.

Running the example reports the performance of the model on 88 of the 100 input features selected using the correlation statistic.

Note: Your results may vary given the stochastic nature of the algorithm or evaluation procedure, or differences in numerical precision. Consider running the example a few times and compare the average outcome.

In this case, we can see that removing some of the redundant features has resulted in a small lift in performance with an error of about 0.085 compared to the baseline that achieved an error of about 0.086.

Model Built Using Mutual Information Features

We can repeat the experiment and select the top 88 features using a mutual information statistic.

The updated version of the select_features() function to achieve this is listed below.

The complete example of using mutual information for feature selection to fit a linear regression model is listed below.

Running the example fits the model on the 88 top selected features chosen using mutual information.

Note: Your results may vary given the stochastic nature of the algorithm or evaluation procedure, or differences in numerical precision. Consider running the example a few times and compare the average outcome.

In this case, we can see a further reduction in error as compared to the correlation statistic, in this case, achieving a MAE of about 0.084 compared to 0.085 in the previous section.

Tune the Number of Selected Features

In the previous example, we selected 88 features, but how do we know that is a good or best number of features to select?

Instead of guessing, we can systematically test a range of different numbers of selected features and discover which results in the best performing model. This is called a grid search, where the k argument to the SelectKBest class can be tuned.

It is a good practice to evaluate model configurations on regression tasks using repeated stratified k-fold cross-validation. We will use three repeats of 10-fold cross-validation via the RepeatedKFold class.

We can define a Pipeline that correctly prepares the feature selection transform on the training set and applies it to the train set and test set for each fold of the cross-validation.

In this case, we will use the mutual information statistical method for selecting features.

We can then define the grid of values to evaluate as 80 to 100.

Note that the grid is a dictionary mapping of parameter-to-values to search, and given that we are using a Pipeline, we can access the SelectKBest object via the name we gave it ‘sel‘ and then the parameter name ‘k‘ separated by two underscores, or ‘sel__k‘.

We can then define and run the search.

In this case, we will evaluate models using the negative mean absolute error (neg_mean_absolute_error). It is negative because the scikit-learn requires the score to be maximized, so the MAE is made negative, meaning scores scale from -infinity to 0 (best).

Tying this together, the complete example is listed below.

Running the example grid searches different numbers of selected features using mutual information statistics, where each modeling pipeline is evaluated using repeated cross-validation.

Note: Your results may vary given the stochastic nature of the algorithm or evaluation procedure, or differences in numerical precision. Consider running the example a few times and compare the average outcome.

In this case, we can see that the best number of selected features is 81, which achieves a MAE of about 0.082 (ignoring the sign).

We might want to see the relationship between the number of selected features and MAE. In this relationship, we may expect that more features result in better performance, to a point.

This relationship can be explored by manually evaluating each configuration of k for the SelectKBest from 81 to 100, gathering the sample of MAE scores, and plotting the results using box and whisker plots side by side. The spread and mean of these box plots would be expected to show any interesting relationship between the number of selected features and the MAE of the pipeline.

Note that we started the spread of k values at 81 instead of 80 because the distribution of MAE scores for k=80 is dramatically larger than all other values of k considered and it washed out the plot of the results on the graph.

The complete example of achieving this is listed below.

Running the example first reports the mean and standard deviation MAE for each number of selected features.

Note: Your results may vary given the stochastic nature of the algorithm or evaluation procedure, or differences in numerical precision. Consider running the example a few times and compare the average outcome.

In this case, reporting the mean and standard deviation of MAE is not very interesting, other than values of k in the 80s appear better than those in the 90s.

Box and whisker plots are created side by side showing the trend of k vs. MAE where the green triangle represents the mean and orange line represents the median of the distribution.

Box and Whisker Plots of MAE for Each Number of Selected Features Using Mutual Information

Box and Whisker Plots of MAE for Each Number of Selected Features Using Mutual Information

Further Reading

This section provides more resources on the topic if you are looking to go deeper.

Tutorials

Books

APIs

Articles

Summary

In this tutorial, you discovered how to perform feature selection with numerical input data for regression predictive modeling.

Specifically, you learned:

  • How to evaluate the importance of numerical input data using the correlation and mutual information statistics.
  • How to perform feature selection for numerical input data when fitting and evaluating a regression model.
  • How to tune the number of features selected in a modeling pipeline using a grid search.

Do you have any questions?
Ask your questions in the comments below and I will do my best to answer.

Get a Handle on Modern Data Preparation!

Data Preparation for Machine Learning

Prepare Your Machine Learning Data in Minutes

...with just a few lines of python code

Discover how in my new Ebook:
Data Preparation for Machine Learning

It provides self-study tutorials with full working code on:
Feature Selection, RFE, Data Cleaning, Data Transforms, Scaling, Dimensionality Reduction, and much more...

Bring Modern Data Preparation Techniques to
Your Machine Learning Projects


See What's Inside

47 Responses to How to Perform Feature Selection for Regression Data

  1. Avatar
    Rakesh June 8, 2020 at 1:22 pm #

    Can you please explain lr model in pipeline statement

    • Avatar
      Jason Brownlee June 9, 2020 at 5:55 am #

      Yes, it is a linear regression model.

      • Avatar
        Francesca August 19, 2021 at 9:30 pm #

        Can you replace ‘lr’ if you want to try other models such as random forest?

        • Avatar
          Adrian Tam August 20, 2021 at 1:24 am #

          Surely you can!

  2. Avatar
    marco June 9, 2020 at 11:22 pm #

    Hello Jason,
    I have a question about Keras hidden layers (dense).
    Is there any best practices to know how many hidden layers is better to add/ define for a network, and how to define an effective value for each (e.g. .Dense(number, activation=’relu’)) the number inside).
    Thanks,
    Marco

  3. Avatar
    Johnny June 12, 2020 at 1:09 pm #

    Hello Jason:

    Is there any tutorial of features selection for classification problem?

    Thanks
    Johnny

  4. Avatar
    Sari June 13, 2020 at 3:18 pm #

    Sir, can you explain how a set of images will be trained and tested ? So that we can recognise the known image.

  5. Avatar
    shaheen June 25, 2020 at 1:31 am #

    Is there any tutorial for Choose a Feature Selection Method regression using Machine Learning?

  6. Avatar
    shaheen June 25, 2020 at 1:42 am #

    Is there any tutorial for Choosing Non linear Feature Selection Method regression using Machine Learning?

  7. Avatar
    Ashkan July 25, 2020 at 10:30 am #

    Hi Jason,

    Have a comment for you. When pipelining for tuning for the number of features in the SelectKBest, shouldn’t the training, validation and test sets be separated. Imagine I want to also choose among different filter method. Then for each feature selection method (either Regression_f or Mutual) I would first tune K by:

    results = search.fit(X_train, y_train)

    and then I will use test set and performance measure (MAE) to see what method with Best tunning paramer will perform better on the test set. MAE(Test).

    You exhausted CV on all data:
    results = search.fit(X, y)

    and there is no room for comparison of feature selection method on test set. Am I right or off the base?

    • Avatar
      Jason Brownlee July 26, 2020 at 6:13 am #

      Feature selection is fit on the training set and applied on train, test, val to ensure we avoid data leakage.

      The pipeline used in the grid search ensures this is the case, but would assume a pipeline is used in all cases.

  8. Avatar
    Shrinidhi October 22, 2020 at 10:44 pm #

    Hi sir,
    I am performing a regression analysis on a high dimensional data (no. of features are more than 10000), can you please suggest any feature selection method ? (does mutual info regression works for high dimensional data?) , I know that the relation is non linear between features and the output value, I want to know whether mutual info regression can capture nonlinear dependency?

    Thank You

  9. Avatar
    Sid October 25, 2020 at 2:35 am #

    Hi Jason,
    How can i map the features to the actual column headers from the dataset ?

  10. Avatar
    CC November 28, 2020 at 8:03 pm #

    Hi Jason,

    Thanks for the post. Among all the feature selection methods for regression problem, how do I know which method to choose? as each methods output slightly different selected features. Thank you!

  11. Avatar
    Larissa Machado December 9, 2020 at 3:06 am #

    Hello! Thank you very much for your post!
    Excellent one!

    I would like to know, after discover that 80 features is the best number , how do you know wich features are those 80 selected?

    Thank you!

    • Avatar
      Jason Brownlee December 9, 2020 at 6:30 am #

      You’re welcome.

      You can select them using the algorithm and print their indexes, even map them to column names.

      See the section “Which Features Were Selected” in here:
      https://machinelearningmastery.com/rfe-feature-selection-in-python/

      • Avatar
        Daniel Merchan Millan August 6, 2021 at 10:11 pm #

        Hi Jason,
        Excellent Turorial!
        In realtion to Larissa’s question.
        What the easiest way to get the features that actually give the best performing model? Also It’s coefficients? (miltivariant linear regression model)
        Thanks in advance.

        • Avatar
          Jason Brownlee August 7, 2021 at 5:41 am #

          Coefficient size (for normalized or standardized inputs) can give some idea of feature importance.

  12. Avatar
    Ran Da December 28, 2020 at 11:36 am #

    Sorry for my question but i didn’t undrestand this line of code

    grid[‘sel__k’] = [i for i in range(X.shape[1]-20, X.shape[1]+1)]

    -20 refer to what?

    • Avatar
      Jason Brownlee December 28, 2020 at 1:16 pm #

      -20 subtracts 20 from the value at X.shape[1].

      In this case the shape is 100, subtracting 20 takes it to 80, therefore the range is from 80 to 100. We add 1 because the range stops at the value before the last in the range.

      I hope that helps.

      • Avatar
        Ran Da December 28, 2020 at 9:31 pm #

        Sorry ffor my questions , i am a beginner in ML
        why should we substract 20 exactly??

        • Avatar
          Jason Brownlee December 29, 2020 at 5:14 am #

          Because I wanted to show the effect of model performance with 80 to 100 features. It was arbitrary.

          • Avatar
            Ran Da December 29, 2020 at 5:32 am #

            I get it. Thank you

          • Avatar
            Jason Brownlee December 29, 2020 at 7:56 am #

            You’re welcome.

  13. Avatar
    Ran Da January 18, 2021 at 8:03 am #

    Hello, this coe is for selecting the best number of features that gives the best MAE value (like the 20 first features or the 50 first feaures).
    But not the best features that gives MAE value (as features 1, 6, 20, 40,50).
    So ho coul i get the more significant features that gives the best MAE values.
    Thank you.

    • Avatar
      Jason Brownlee January 18, 2021 at 8:59 am #

      It depends on how you define “best features”. For me it is the subset that gives the best model performance.

      – Perhaps try all subsets.
      – Perhaps try feature importance.
      – Perhaps try alternate feature selection methods.

  14. Avatar
    Joel Hoyt June 12, 2021 at 5:03 am #

    Thank you for your very useful posts Jason! The surprise here was to see such a degradation of performance after selection and fit using only the 10 informative features. I was naively expecting at least a similar performing model considering the data was designed with these 10 features being the relevant ones.

    I wonder what exactly are all the redundant features adding which produces such better model performance.

    It is telling me the method of importance using correlation to target is highly suspect and probably shouldn’t be used at all.

    • Avatar
      Jason Brownlee June 12, 2021 at 5:40 am #

      Not suspect, only that the informative features are hard to identify.

  15. Avatar
    Sirui November 9, 2021 at 7:35 pm #

    Hi, Thanks for the tutorial. Why do SelectKBest scores for f_regression not range in [-1,1]?

  16. Avatar
    Salman February 18, 2022 at 3:03 pm #

    Nice, Just a doubt, in te first output, where we are getting feature scores like Feature 0: 0.455 and so on. Is the feature 0 is the same column (or variable) given in input in X dataframe. For example, if having dataframe with head petal.len, petal.color, flower.color etc. That means feature 0 is petal.len.
    Am i right?

    • Avatar
      James Carmichael February 21, 2022 at 9:27 am #

      That is correct Salman!

  17. Avatar
    Bilash Dash March 19, 2022 at 12:22 pm #

    How to perform feature importance and selection using XGBRegressor like your tutorial on XGBClassifier for classification problem?

  18. Avatar
    América June 16, 2023 at 12:59 am #

    Hi @James!
    First of all, thank you very much for your always dedicated articles, they are very useful for us!
    I would like some advice about feature selection techniques in the field of survival time analysis, I have hundreds of features and I need to reduce them.

    Thank you very much!

Leave a Reply