A matrix is an array of numbers organized in rows and columns.
A correlation matrix is a table that displays the correlation coefficients between variables, with the variables listed in the first row and column.
The table above uses data from the full health data set.
Observations:
Can we conclude that Average_Pulse does not affect Calorie_Burnage? Not yet. We will revisit this question later!
The corr()
function in Python can be used to generate a correlation matrix, and the round()
function helps to round the results to two decimal places.
Corr_Matrix = round(full_health_data.corr(),2) print(Corr_Matrix) |
Output: