how to relationship between two columns python code example
Example 1: correlation between two columns pandas
Top15['Citable docs per Capita'].corr(Top15['Energy Supply per Capita'])
Example 2: check correlation of each column with the target in python
df[df.columns[1:]].corr()['LoanAmount'][:]