The Matriz view lets you visualize indicator data and compute pairwise Pearson correlation coefficients between all registered indicators. The correlation matrix helps you identify which indicators move together, in opposite directions, or independently.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/davi-huanuco/python-matriz-correlacion/llms.txt
Use this file to discover all available pages before exploring further.
To generate a meaningful correlation matrix you need at least two indicators, each with at least two shared non-null data points in the same months. If these conditions are not met, individual cells in the matrix display a dash (
-) instead of a coefficient.Generating the matrix
Open the Matriz view
Navigate to the Matriz section from the main navigation. The top of the page shows a summary table of all registered indicators with their codes and names.
Reading the results
The correlation matrix is a square table where both rows and columns are labeled with indicator codes. Each cell contains the Pearson r value for the pair formed by that row’s indicator and that column’s indicator.- The diagonal (where row and column share the same indicator) always shows
1.00. - A dash (
-) appears when there are fewer than two valid paired data points for that combination — for example, if one indicator has data only for months where the other has nulls.
How the coefficient is calculated
The application computes the standard Pearson product-moment correlation coefficient. For each pair of indicators, it collects the months where both have non-null numeric values, then applies the formula:a and b are the paired value lists and ā, b̄ are their respective means. If the denominator is zero (all values are identical), the result is shown as -.