File size: 4,965 Bytes
81e5fe7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | """analyze_correlation — correlation among numeric columns (KM-608).
An analytical "family" tool: in ONE call it measures how strongly numeric
columns move together. Returns the full correlation matrix plus a list of
column pairs ranked by strength. Answers questions like "does price relate to
units sold?".
STATUS: compute layer only — the function takes an already-materialized
DataFrame. The wrapper layer (fetching data from the catalog via source_id,
the ToolOutput envelope, ToolSpec registration) is added once the Planner
seam (KM-418) is settled. Keeping compute separate from data-fetching makes
this function easy to unit-test in isolation and stable when wrapped.
"""
from __future__ import annotations
import math
import pandas as pd
from src.tools.analytics.descriptive import ColumnNotFoundError
# Correlation methods supported by pandas .corr().
SUPPORTED_METHODS = ("pearson", "spearman", "kendall")
class InvalidMethodError(ValueError):
"""The requested method is not supported (maps to error_code INVALID_METHOD)."""
class NonNumericColumnError(ValueError):
"""A requested column is not numeric (maps to error_code NON_NUMERIC_COLUMN)."""
class NotEnoughColumnsError(ValueError):
"""Correlation needs at least two numeric columns (maps to NOT_ENOUGH_COLUMNS)."""
def _clean(value: object) -> float | None:
"""Cast to plain float; NaN (e.g. a zero-variance column) -> None."""
if value is None:
return None
f = float(value) # type: ignore[arg-type]
return None if math.isnan(f) else f
# Prompt-style description read by the Planner to decide WHEN to pick this tool.
# Final destination is ToolSpec.description once the wrapper layer is built.
DESCRIPTION = """\
Summary: Pairwise correlation across numeric columns (pearson, spearman, or \
kendall). Returns a correlation matrix plus the strongest pairs ranked by \
absolute strength.
USE WHEN the question is about relationship or association between numeric \
variables. Trigger words: "correlation" (korelasi), "related/relationship" \
(hubungan/keterkaitan), "does X affect Y", "move together".
DON'T USE WHEN:
- it implies causation — correlation is not causality; stay descriptive
- it compares two groups of one metric -> analyze_comparison
- it summarizes a single column -> analyze_descriptive
Example questions:
- "is there a correlation between price and quantity sold?"
- "which variables are most related to revenue?"
- "do age and spending move together?"
- "show the correlation matrix for the numeric columns"
"""
def analyze_correlation(
df: pd.DataFrame,
column_ids: list[str] | None = None,
method: str = "pearson",
) -> dict[str, object]:
"""Pairwise correlation across numeric columns.
Args:
df: already-materialized data (in the real system the wrapper fetches
this from a source_id).
column_ids: numeric columns to correlate. If None, every numeric
column in df is used.
method: "pearson" (linear), "spearman" (rank), or "kendall".
Returns:
dict with:
method — echo of the chosen method
columns — the numeric columns actually correlated
matrix — { col: { col: corr|None } } full square matrix
pairs — [{"a", "b", "corr"}] unique pairs, strongest |corr| first
Raises:
InvalidMethodError: if method is unknown.
ColumnNotFoundError: if an explicit column is absent.
NonNumericColumnError: if an explicit column is not numeric.
NotEnoughColumnsError: if fewer than two numeric columns remain.
"""
if method not in SUPPORTED_METHODS:
raise InvalidMethodError(
f"unknown method '{method}'; supported: {list(SUPPORTED_METHODS)}"
)
if column_ids is None:
cols = [c for c in df.columns if pd.api.types.is_numeric_dtype(df[c])]
else:
missing = [c for c in column_ids if c not in df.columns]
if missing:
raise ColumnNotFoundError(f"columns not found: {missing}")
non_numeric = [
c for c in column_ids if not pd.api.types.is_numeric_dtype(df[c])
]
if non_numeric:
raise NonNumericColumnError(f"columns are not numeric: {non_numeric}")
cols = list(column_ids)
if len(cols) < 2:
raise NotEnoughColumnsError(
f"need >= 2 numeric columns, got {len(cols)}: {cols}"
)
corr = df[cols].corr(method=method)
matrix = {a: {b: _clean(corr.loc[a, b]) for b in cols} for a in cols}
pairs = []
for i in range(len(cols)):
for j in range(i + 1, len(cols)):
val = _clean(corr.iloc[i, j])
if val is not None:
pairs.append({"a": cols[i], "b": cols[j], "corr": val})
pairs.sort(key=lambda p: abs(p["corr"]), reverse=True)
return {"method": method, "columns": cols, "matrix": matrix, "pairs": pairs}
|