How can I select features for Symbolic Regression ? I have 30 features, I want to use only the most sensitive features for Symbolic Regression.
As an example, this dataset can be used which is similar to my dataset. https://scikit-learn.org/stable/modules/generated/sklearn.datasets.load_boston.html
One possibility is to first use a random forest to fit the data, and then select the features that the random forest deems to be the most important.