import pandas as pd
full_health_data = pd.read_csv("data.csv", header=0, sep=",")
Corr_Matrix = round(full_health_data.corr(),2)
print(Corr_Matrix)
Duration Average_Pulse Max_Pulse Calorie_Burnage Duration 1.00 -0.17 0.00 0.89 Average_Pulse -0.17 1.00 0.79 0.02 Max_Pulse 0.00 0.79 1.00 0.20 Calorie_Burnage 0.89 0.02 0.20 1.00