I am working with a dataset that has both numerical and categorical features. I have seen this post which discusses the problem in R, and was wondering if someone could recommend the same in Scikitlearn
I am trying to find the best way to examine the correlation among all of the features in my dataset. Currently, I am only able to see the numeric features, for example, using the seaborn library,
c = data.corr()
sns.heatmap(c, annot=True, cmap='Greens')
Thank you in advance