Introduction to Python in Power BI
Jacob H. Marquez
Data Scientist
Definition: a numerical measure of some type of statistical relationship between two variables
Range: -1 to 1
Range
-1:
1:
0: no relationship






import seaborn as sns
corrMatrix = dataset.corr()
sns.heatmap(
corrMatrix,
annot=True
)



Strong correlative relationship <> One caused the other
Causal relationship typically requires experimentation

Introduction to Python in Power BI