I think instead of dropping "either of" 2 highly correlated features, we should check from both of them how each of them correlates with the target as well and then drop the less correlated with the target variable. Which might increase some accuracy instead of considering dropping whichever comes first. Again, I think it is.
@@niveditawagh8171 you only drop when two feature variables are highly correlated but you don't have to drop feature that is less correlated with target variable because less correlated feature with target variable could be a good predictor variable in combination with other features.
If you are transporting ice-cream in a vehicle, the number of ice-cream sticks that reach the destination is inversely proportional to temperature, higher the temperature, lesser are the sticks. If you want to effectively model the temperature of the vehicle's cooler and make it optimal, you need to consider this negatively correlated features, outside air temperature and number of ice-cream sticks at the destination.
In which order should u do the feature selection steps? 0. Clean the dataset, get rid of NaN and junk values. Check format for datatypes in testset etc 1. Use z-method to eliminate outliers 2. Normalize the train_X data 3. Check correlation between x_train variables and y_train. Drop variables that have a low correlation with the target variable. 4. Use pearsons correlation test to drop highly correlated variables from x_test 5. Use variance threshold method to drop x_train variables with low variance. All variables that have been removed from the x_train data should be removed from the x_test aswell. 6. Fit x_train and y_ train to a classification model 7. Predict y(x_test) 8. Compare the predicted y(x_test) output with y_test to calculate accuracy 9. Try different classification models and see which one performs the best (have the highest accuracy) Is this the right order? Have I missed something?
Sir, could you please upload more videos on feature selection to this playlist? It is very amazing. I followed all the videos from feature engineering playlist. You are doing a great work. Thank you.🙏🏻
I want to point out a veryyy important concept which is missing in this video discussion: Suppose 2 input features are highly correlated then it's not like that , I can drop any between those 2 , then I have to check which feature between those 2 has weaker correlation with output variable , that one has to be dropped.
Let's say variables x, y and z are all strongly correlated to each other. You would only need to use one of them as a feature. By saying [df.corr()>0.7 or df.corr()
In this video it's said negatively correlated features are both imp. lets take an example, when we have both percentage and ranks in a dataset, for 100% we have 1 in rank and 60% lets say 45(last) in rank. both resemble the same importance in the dataset. So what I think is we can remove one feature among those 2 features, otherwise we will be giving double weightage for that particular feature. Hope someone can correct this if I was wrong.
I have a doubt. Suppose if A and B have correlation greater than threshhold and the loop includes column A from the pair. Further B and C are highly correlated(although C is not highly correlated with A)and the loop includes B in the list. Now if we drop A and B wouldn't that affect the model as both A and B will be dropped?
since we are giving only one positive value for threshold, the code abs allows check for both negative and positve values with threshold, so i feel its better if it stays
Thanks krish, You've earned a rocket point from me :) Would have been nice, if the function also printed which feature it was strongly correlated with: because from the code you dropped all the features that met the threshold, not one was kept.
Hi friend, I think the correlation function is removing more than expected because when the fors loops are iterating not validate if for a value > threshold the column and index already was removed before. I corrected the function and in this case the features removed are these: {'DIS', 'NOX', 'TAX'}. Also I tested creating the correlation matrix again and verify that there is not values > threshold. Please can you check it. def correlation(dataset, threshold): col_corr = set() corr_matrix = dataset.corr() for i in range(len(corr_matrix.columns)): for j in range(i): if abs(corr_matrix.iloc[i, j]) > threshold: if (corr_matrix.columns[i] not in col_corr) and (corr_matrix.index.tolist()[j] not in col_corr): colname = corr_matrix.columns[i] col_corr.add(colname) return col_corr
We cheak the correlation between inputs and the output so why you drop output column and then cheak correlation we use a VIF (variance inflection factor) to cheak the relationship between inputs and the threshold value is preffer 4.
Great tutorial, but I think you're mistaken about the abs(). You're actually considering both with abs(). If you remove abs() and you keep the > inequality then a 0.95 would be > Thresh=0.9, but -0.99 would not satisfy this condition! If you want to remove abs(), then you need to test 2 conditions, like if corr_matrix.iloc[i,j] > +1*thesh (assuming thres is always +ve) and corr_matrix.iloc[i,j]
Hi Krish, I checked it somewhere and I think if the dataset has perfectly positive or negative attributes then in either case there is a high chance that the performance of the model will be impacted by Multicollinearity.
Pearson's correlation only works with numeric features. However, if you want to explore the categorical features, you can use Pearson's Chi-square test. You can use the SKBest from scikit-learn and chi2. Hope it helps!
Hello nice video, how to do feature selection if we have more than one target variable? i.e. In case of MultiOutput Regression problem how we can do feature selection. do we have to perform the pearson correlation individually on each of target variable or is there another convenient way that can solve the problem?
Two quick questions: (1) Why not remove redundant features, ie highly correlated variables, from X before splitting it into training and test? What would be wrong with this approach? (2) If one features variable is correlated with a value of 1 and another variable with a value of -1 with regard to a given feature, are these also considered redundant?
Why we are droping highly correlated feature after spliting train and test either it is easy to drop features from original data set and then we can simply split the dataset?❓😕🤔
The function used in the example will not deliver high correlation with the dependent variable. Because at the end you dropped the columns without being checking the correlation with dependent variable.
If absolute is not used then threshold can not be 0.85. If any features are highly co-related negatively like -0.85 Still it wont qualify for the drop. Hence Absolute is necessary.
Hi Krish while removing the correlated features we haven't checked that the independent variable is corelated to dependent variable. As you said in staring we should not remove the features that are highly correlated to dependent variables so while generating the heatmap should we include the dependent variable also ? let me know if my understanding is correct?
Hi Ankit, If we include the dependent variable in this feature selection process, the accuracy of our model might get compromised. Also if you can see in video if 2 features are highly correlated we are only removing 1 feature. So if that feature has good correlation with dependent variable which we don't know yet it is still in the dataset. (As we have dropped only one feature out of those 2)
Wonderful explanantion. Krish as mentioned in video you said you upload 5-6 videos for feature selection. Can you please share the link for rest of them.
Dear teacher, May I ask a question? In my case, I want to predict sale of 4 products with weather forecast information, season and public holiday one week ahead. So, do I need to organize weekly based data? When we use SPSS, we need to organize weekly data, how about Machine Learning? I feel confused for that. In my understanding, ML will train the data with respect to weather information. So, we don't need to organize weekly data because we don't use time series data. Is it correct? Please kindly give me a comment.
If you're a student and have time to explore, please go ahead and implement it from scratch. It'll really help you to not only understand the basic working but also the software development aspect of creating any model (refer sklearn documentation and source code) and get to know more about industry level coding practices.
Hi sir, there's an obvious flaw in this approach. You can't drop all correlated features, but only some of them. e.g. perimeter_mean & area_se are highly correlated (0.986507), and they both appear in your corr_features. However, you can't drop all of them because from pairplot, you could see perimeter_mean has a clear impact on the test result.
Sir, what you've shown in the last of this video, in that big data project, after deleting those 193 features, how I can deploy the model? Please share a video (or link if you have in your playlist) the deployment phase after deleting features. Thanks. ❤
Pearson correlation coefficient only measures the linear relationship between features. This approach may not be effective if there are non-linear relationships between features.
Hello Sir my dataset contains 17000 features, when I execute corr() its taking more than 5 minutes to execute and also for generating heatmap memory related error generating. Can you help to solve the issue?
Hi everyone i need one help. this technique to select numerical features only. Suppose we have done one hot encoding on categorigal data and converted into numerical then can we apply this technique on that features as well(entire data set with numerical column and categorical column converted into numerical with some encoding technique.) Kindly help me to understand.
What do you think about feature reduction using PCA, looking for a correlation between each feature and principal components, and then using those who have the most number of correlation that is great than 50% (or any other)?
Hi kris, in multicollinearity conceps we have both corrlation matrix as well as VIF to remove the collinearity. Which method is best or does that depend upon data
@@krishnaik06 i worked on a dataset which was highly correlated features and both these methods gave me different results. Hence was confused which method to use. Thats why this question. Thanks
While dropping the columns using the list of all corelated columns arent we deleting all of them and not even retaining the ones we actually want. for example, suppose we get 3 corelated columns in the list. and then apply, corelated_columns=[f1,f2,f3] : corr>0.8 for e.g x_train=x_train.drop(corelated_columns,axis=1) then all 3 are getting dropped whereas we want only 2 to drop and retain one?? Please clarify.
That's a great question! I believe, we would want to retain one and drop the rest. Dropping all will be a loss of information imo. I would also suggest adding i and j column to the 'set' as well. This would help get pairs of correlated columns rather than just a list. For example, replacing col_corr.add(colname) by col_corr.add((corr_matrix.columns[i], corr_matrix.columns[j])) will give us the pairs, and then we can decide which one to keep. Again this is just my opinion, I might be wrong. Happy learning!
@@YS-nc4xu Actually this approach of getting corelated pairs is correct. But there is one flaw. I myself have faced this flaw and its quite problematic when tackling a dataset with feature columns more than 500. What happens is we get too many combinations of corelated pairs and they are double in number because while iterating we will get both . for e.g corelated list below . [f4,f9],[f9,f4] ,[f5,f9],[f8,f7],[f4,f8],[f8,f9],[f7,f8],[f9,f5] Check: kaggle.com/MoA prediction competition. And run Pearson's Corr on the dataset. You will be shocked Again going through the whole list and finding out the corelated columns for respective feature while tackling duplicate lists is going to be a very diificult one if done manually. I am in process of trying to figure out a solution to this and hopefully i will. Peace.
@@prabhusantoshpanda5259 Sure, my response was just for your point of dropping all correlated cols in the given problem. Additionally, the for loops shown in the video, takes care of the repetition mentioned by you. The 'for j in range(i): ' considers only the lower triangular matrix, thus eliminating the repetitions. Furthermore, for data with more than 500 cols, obviously one wouldn't want to go with Pearson's corr. I believe, this video was to give a basic use case of corr on simple data and not on a high dimension data. In my opinion, PCA / SVD might help for your problem . Peace out!
Instead of doing X_train , x_test split, if we find correlation of the whole data and then we compare correlated column's correlation with the dependent feature and then drop only those features among the correlated columns which are less correlated?....does my question makes sense? if it does, would it affect the model?
I believe those should be two separate questions. Regarding the split, it is necessary to split before getting correlation to understand its effect on the test data. If you do not split, then when testing, you're already assuming the correlation to be present in the test data and thus overfitting. Remember, the actual "test" data will always be unknown to us, and the split helps us validate the model and generalize it for the future unknown data. For the second question: Yes, that makes sense to me. After getting the "multi-correlated" columns, we can calc the correlation of each with the target, and drop the ones with low absolute correlation.
@@PraveenKumar-pd9sx if we check correlation of whole data rather than splitting(X_train, X_test). there is a chance that the correlation of whole data will be slightly different than the correlation if we had split. this might give us a better result on the validation (X_test) but would not perform on the actual test data when we deploy it in real world. this is my understanding from @Y S's comment.
You shouldn't remove abs, u should consider the negative correlation as well. Also u have to check its correlation with the target to decide which feature to be removed. Please pull down this video or correct it or else people will study wrong things.
Sir, I have a query regarding this...features which are highly correlated gives same information right or they are duplicate feature. where does it in this code remove only the duplicate features?? From the code I feel like this is removing all the features which shoiws a value above threshold..
" I feel like this is removing all the features which shoiws a value above threshold" I had the same doubt. Analyze the code. col_corr.add(colname) --> this part takes care it.