Skip to content

Scans

Residual correlation scans with multiple-testing correction, for individual features, pairwise interactions, and arbitrary candidate frames.

featurely.scans

run_candidate_scan(df, candidates, target)

Measure partial correlation of precomputed candidate columns vs residuals.

Unlike run_per_feature_scan, which transforms existing columns on the fly, this scan takes a frame of already-built candidate features (anchor distances, bin aggregates, cluster memberships, and so on). Each candidate is correlated against the residuals of a baseline linear model fit on the current features; a strong correlation means the candidate explains variance the baseline misses.

Parameters:

Name Type Description Default
df DataFrame

Input frame containing features and the target.

required
candidates DataFrame

Frame of precomputed candidate columns to screen.

required
target str

Name of the target column used to fit the baseline model.

required

Returns:

Type Description
dict[str, tuple[float, float]]

Mapping of candidate name to (pearson_r, p_value) against the

dict[str, tuple[float, float]]

baseline residuals. Non-finite or constant candidates are skipped.

Source code in src/featurely/scans.py
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
def run_candidate_scan(
    df: pd.DataFrame,
    candidates: pd.DataFrame,
    target: str,
) -> dict[str, tuple[float, float]]:
    """Measure partial correlation of precomputed candidate columns vs residuals.

    Unlike run_per_feature_scan, which transforms existing columns on the
    fly, this scan takes a frame of already-built candidate features (anchor
    distances, bin aggregates, cluster memberships, and so on). Each
    candidate is correlated against the residuals of a baseline linear model
    fit on the current features; a strong correlation means the candidate
    explains variance the baseline misses.

    Args:
        df: Input frame containing features and the target.
        candidates: Frame of precomputed candidate columns to screen.
        target: Name of the target column used to fit the baseline model.

    Returns:
        Mapping of candidate name to ``(pearson_r, p_value)`` against the
        baseline residuals. Non-finite or constant candidates are skipped.
    """

    x = df.drop(target, axis=1).values
    y_arr = df[target].values
    baseline_model = LinearRegression().fit(x, y_arr)
    residuals = y_arr - baseline_model.predict(x)
    baseline_r2 = baseline_model.score(x, y_arr)

    print(f"Baseline R2 (in-sample): {baseline_r2:.4f}")
    print()

    results: dict[str, tuple[float, float]] = {}
    width = max(len(c) for c in candidates.columns)

    for col in candidates.columns:
        values = np.asarray(candidates[col], dtype=float)

        if not np.isfinite(values).all():
            print(f"{col:>{width}}: skipped (non-finite values)")
            continue

        if _is_effectively_constant(values):
            print(f"{col:>{width}}: skipped (constant values)")
            continue

        r, p = pearsonr(values, residuals)
        results[col] = (r, p)
        print(f"{col:>{width}}: r = {r:+.4f},  p = {p:.4f}")

    return results

plot_candidate_scan(results, title, color=None, alpha=0.05)

Horizontal bar chart of candidate scan results with BH FDR stars.

Applies Benjamini-Hochberg false discovery rate correction across all candidates in the scan and marks significant bars with an asterisk.

Parameters:

Name Type Description Default
results dict[str, tuple[float, float]]

Scan results from run_candidate_scan.

required
title str

Plot title.

required
color str | None

Optional bar color; when omitted, Matplotlib's default is used.

None
alpha float

Significance level for the FDR correction.

0.05

Returns:

Type Description
dict[str, bool]

Mapping of candidate name to significance flag.

Source code in src/featurely/scans.py
 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
134
135
136
137
138
def plot_candidate_scan(
    results: dict[str, tuple[float, float]],
    title: str,
    color: str | None = None,
    alpha: float = 0.05,
) -> dict[str, bool]:
    """Horizontal bar chart of candidate scan results with BH FDR stars.

    Applies Benjamini-Hochberg false discovery rate correction across all
    candidates in the scan and marks significant bars with an asterisk.

    Args:
        results: Scan results from ``run_candidate_scan``.
        title: Plot title.
        color: Optional bar color; when omitted, Matplotlib's default is used.
        alpha: Significance level for the FDR correction.

    Returns:
        Mapping of candidate name to significance flag.
    """

    if not results:
        print("No candidate results to plot.")
        return {}

    labels = list(results.keys())
    r_vals = [results[k][0] for k in labels]
    p_raws = [results[k][1] for k in labels]

    reject, _, _, _ = multipletests(p_raws, alpha=alpha, method="fdr_bh")

    n = len(labels)
    _, ax = plt.subplots(figsize=(8, max(4, n * 0.35)))
    y_pos = np.arange(n, dtype=float)
    ax.barh(y_pos, r_vals, height=0.7, color=color, alpha=0.7)

    for yp, r_val, sig in zip(y_pos, r_vals, reject, strict=False):
        if not sig:
            continue

        if r_val >= 0:
            ax.text(r_val + 0.003, yp, "*", va="center", ha="left", fontsize=9, color="black")

        else:
            ax.text(r_val - 0.003, yp, "*", va="center", ha="right", fontsize=9, color="black")

    ax.set_yticks(y_pos)
    ax.set_yticklabels(labels, fontsize=7)
    ax.axvline(0, color="black", linewidth=0.8)
    ax.set_xlabel("Pearson r (vs baseline residuals)")
    ax.set_title(title)
    plt.tight_layout()
    show_figure()

    return dict(zip(labels, (bool(s) for s in reject), strict=False))

run_per_feature_scan(df, features, transform_fn, label_prefix, target)

Measure partial correlation of transformed features vs baseline residuals.

Parameters:

Name Type Description Default
df DataFrame

Input frame containing features and the target.

required
features list[str]

Columns to transform and screen.

required
transform_fn Callable[[Series], ndarray | Series]

Callable applied to each feature series.

required
label_prefix str

Prefix used to build result labels, e.g. log produces labels like log_{feature}.

required
target str

Name of the target column used to fit the baseline model.

required

Returns:

Type Description
dict[str, tuple[float, float]]

Mapping of candidate label to (pearson_r, p_value) against the

dict[str, tuple[float, float]]

baseline residuals. Non-finite or constant transforms are skipped.

Source code in src/featurely/scans.py
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
def run_per_feature_scan(
    df: pd.DataFrame,
    features: list[str],
    transform_fn: Callable[[pd.Series], np.ndarray | pd.Series],
    label_prefix: str,
    target: str,
) -> dict[str, tuple[float, float]]:
    """Measure partial correlation of transformed features vs baseline residuals.

    Args:
        df: Input frame containing features and the target.
        features: Columns to transform and screen.
        transform_fn: Callable applied to each feature series.
        label_prefix: Prefix used to build result labels, e.g. ``log``
            produces labels like ``log_{feature}``.
        target: Name of the target column used to fit the baseline model.

    Returns:
        Mapping of candidate label to ``(pearson_r, p_value)`` against the
        baseline residuals. Non-finite or constant transforms are skipped.
    """

    x = df.drop(target, axis=1).values
    y_arr = df[target].values
    baseline_model = LinearRegression().fit(x, y_arr)
    residuals = y_arr - baseline_model.predict(x)
    baseline_r2 = baseline_model.score(x, y_arr)

    print(f"Baseline R2 (in-sample): {baseline_r2:.4f}")
    print()

    results: dict[str, tuple[float, float]] = {}
    width = len(label_prefix) + 1 + max(len(c) for c in features)

    for col in features:
        try:
            transformed = np.asarray(transform_fn(df[col]))

            if not np.isfinite(transformed).all():
                print(f"{label_prefix}_{col}: skipped (non-finite values)")
                continue

            if _is_effectively_constant(transformed):
                print(f"{label_prefix}_{col}: skipped (constant transformed values)")
                continue

            r, p = pearsonr(transformed, residuals)
            label = f"{label_prefix}_{col}"
            results[label] = (r, p)
            print(f"{label:>{width}}: r = {r:+.4f},  p = {p:.4f}")

        except Exception as exc:
            print(f"{label_prefix}_{col}: skipped ({exc})")

    return results

plot_combined_per_feature_scan(scan_configs, title)

Grouped horizontal bar chart for per-feature scan results.

Applies BH FDR correction across all (transform, feature) pairs and marks significant bars with an asterisk.

Parameters:

Name Type Description Default
scan_configs list[tuple]

Tuples of (prefix, name, results, color, transform_fn).

required
title str

Plot title.

required

Returns:

Type Description
dict[tuple[str, str], bool]

Mapping of (transform name, feature) to significance flag.

Source code in src/featurely/scans.py
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
def plot_combined_per_feature_scan(scan_configs: list[tuple], title: str) -> dict[tuple[str, str], bool]:
    """Grouped horizontal bar chart for per-feature scan results.

    Applies BH FDR correction across all (transform, feature) pairs and
    marks significant bars with an asterisk.

    Args:
        scan_configs: Tuples of (prefix, name, results, color, transform_fn).
        title: Plot title.

    Returns:
        Mapping of (transform name, feature) to significance flag.
    """

    all_entries = []
    all_p_raws = []

    for prefix, name, results, color, _ in scan_configs:
        for label, (r, p) in results.items():
            col = label[len(prefix) + 1 :]
            all_entries.append({"transform": name, "feature": col, "r": r, "color": color})
            all_p_raws.append(p)

    _, p_corr, _, _ = multipletests(all_p_raws, alpha=0.05, method="fdr_bh")

    for entry, pc in zip(all_entries, p_corr, strict=False):
        entry["sig"] = pc < 0.05

    first_prefix = scan_configs[0][0]
    first_results = scan_configs[0][2]
    features_ordered = [lbl[len(first_prefix) + 1 :] for lbl in first_results]

    n_f = len(features_ordered)
    n_t = len(scan_configs)
    group_height = 0.8
    bar_h = group_height / n_t
    offsets = np.linspace(-(n_t - 1) * bar_h / 2, (n_t - 1) * bar_h / 2, n_t)

    fig, ax = plt.subplots(figsize=(8, max(4, n_f * 0.8)))
    handles = []

    for t_idx, (prefix, name, results, color, _) in enumerate(scan_configs):
        y_base = np.arange(n_f, dtype=float)
        y_pos = y_base + offsets[t_idx]
        r_vals = []
        sigs = []

        for feat in features_ordered:
            label = f"{prefix}_{feat}"
            r_val = results.get(label, (0.0, 1.0))[0]
            r_vals.append(r_val)

            e_sig = next(
                (e["sig"] for e in all_entries if e["transform"] == name and e["feature"] == feat),
                False,
            )

            sigs.append(e_sig)

        ax.barh(y_pos, r_vals, height=bar_h * 0.85, color=color, alpha=0.7)
        handles.append(Patch(facecolor=color, alpha=0.7, label=name))

        for yp, r_val, sig in zip(y_pos, r_vals, sigs, strict=False):
            if not sig:
                continue

            if r_val >= 0:
                ax.text(r_val + 0.003, yp, "*", va="center", ha="left", fontsize=9, color="black")

            else:
                ax.text(r_val - 0.003, yp, "*", va="center", ha="right", fontsize=9, color="black")

    ax.set_yticks(np.arange(n_f))
    ax.set_yticklabels(features_ordered)
    ax.axvline(0, color="black", linewidth=0.8)
    ax.set_xlabel("Pearson r (vs baseline residuals)")
    ax.set_title(title)
    ax.legend(handles=handles, loc="lower right")
    plt.tight_layout()
    show_figure()

    return {(e["transform"], e["feature"]): e["sig"] for e in all_entries}

plot_significant_transform_scatters(scan_configs, sig_dict, df, title, target)

Plot transformed feature vs residuals for significant scan results.

Parameters:

Name Type Description Default
scan_configs list[tuple]

Tuples of (prefix, name, results, color, transform_fn).

required
sig_dict dict[tuple[str, str], bool]

Significance mapping from plot_combined_per_feature_scan.

required
df DataFrame

Input frame containing features and the target.

required
title str

Figure title.

required
target str

Name of the target column used to fit the baseline model.

required
Source code in src/featurely/scans.py
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
def plot_significant_transform_scatters(
    scan_configs: list[tuple],
    sig_dict: dict[tuple[str, str], bool],
    df: pd.DataFrame,
    title: str,
    target: str,
) -> None:
    """Plot transformed feature vs residuals for significant scan results.

    Args:
        scan_configs: Tuples of (prefix, name, results, color, transform_fn).
        sig_dict: Significance mapping from ``plot_combined_per_feature_scan``.
        df: Input frame containing features and the target.
        title: Figure title.
        target: Name of the target column used to fit the baseline model.
    """

    x = df.drop(target, axis=1).values
    y_arr = df[target].values
    residuals = y_arr - LinearRegression().fit(x, y_arr).predict(x)

    sig_pairs = [
        (prefix, name, col, transform_fn, color)
        for prefix, name, results, color, transform_fn in scan_configs
        for label in results
        for col in [label[len(prefix) + 1 :]]
        if sig_dict.get((name, col), False)
    ]

    if not sig_pairs:
        print("No statistically significant (transform, feature) pairs found.")
        return

    n_plots = len(sig_pairs)
    n_cols = min(4, n_plots)
    n_rows = (n_plots + n_cols - 1) // n_cols

    fig, axes = plt.subplots(n_rows, n_cols, figsize=(3.5 * n_cols, 3 * n_rows), squeeze=False)
    fig.suptitle(title, fontsize=10)

    for i, (_, name, col, transform_fn, color) in enumerate(sig_pairs):
        ax = axes[i // n_cols, i % n_cols]

        try:
            transformed = np.asarray(transform_fn(df[col]))

        except Exception:
            ax.set_visible(False)
            continue

        ax.scatter(transformed, residuals, color=color, s=4, alpha=0.2)
        r, p = pearsonr(transformed, residuals)
        ax.set_xlabel(f"{name}({col})", fontsize=8)
        ax.set_ylabel("residuals", fontsize=8)
        ax.set_title(f"r = {r:+.3f}  p = {p:.3f}", fontsize=8)
        ax.tick_params(labelsize=7)

    for j in range(n_plots, n_rows * n_cols):
        axes[j // n_cols, j % n_cols].set_visible(False)

    plt.tight_layout()
    show_figure()

run_pairwise_scan(df, features, operation_fn, label_prefix, target, ordered=False, include_self=False)

Evaluate pairwise interaction candidates via partial correlation.

Parameters:

Name Type Description Default
df DataFrame

Input frame containing features and the target.

required
features list[str]

Columns combined pairwise.

required
operation_fn Callable[[Series, Series], Series]

Callable taking two series, e.g. ratio or product.

required
label_prefix str

Prefix used to build result labels.

required
target str

Name of the target column used to fit the baseline model.

required
ordered bool

When True, evaluate both (a, b) and (b, a).

False
include_self bool

When True, include (a, a) pairs such as squares.

False

Returns:

Type Description
dict[str, tuple[float, float]]

Mapping of candidate label to (pearson_r, p_value) against the

dict[str, tuple[float, float]]

baseline residuals. Non-finite or constant results are skipped.

Source code in src/featurely/scans.py
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
def run_pairwise_scan(
    df: pd.DataFrame,
    features: list[str],
    operation_fn: Callable[[pd.Series, pd.Series], pd.Series],
    label_prefix: str,
    target: str,
    ordered: bool = False,
    include_self: bool = False,
) -> dict[str, tuple[float, float]]:
    """Evaluate pairwise interaction candidates via partial correlation.

    Args:
        df: Input frame containing features and the target.
        features: Columns combined pairwise.
        operation_fn: Callable taking two series, e.g. ratio or product.
        label_prefix: Prefix used to build result labels.
        target: Name of the target column used to fit the baseline model.
        ordered: When True, evaluate both (a, b) and (b, a).
        include_self: When True, include (a, a) pairs such as squares.

    Returns:
        Mapping of candidate label to ``(pearson_r, p_value)`` against the
        baseline residuals. Non-finite or constant results are skipped.
    """

    n = len(features)

    if ordered:
        pairs = [(features[i], features[j]) for i in range(n) for j in range(n) if i != j]

    else:
        pairs = [(features[i], features[j]) for i in range(n) for j in range(i if include_self else i + 1, n)]

    x = df.drop(target, axis=1).values
    y = df[target].values
    baseline_model = LinearRegression().fit(x, y)
    residuals = y - baseline_model.predict(x)
    baseline_r2 = baseline_model.score(x, y)

    print(f"Baseline R2 (in-sample): {baseline_r2:.4f}")
    print()

    results: dict[str, tuple[float, float]] = {}
    width = len(label_prefix) + 2 + max(len(a) + len(b) for a, b in pairs)

    for col_a, col_b in pairs:
        label = f"{label_prefix}_{col_a}_{col_b}"

        try:
            new_vals = operation_fn(df[col_a], df[col_b])

        except Exception:
            print(f"{label:>{width}}: skipped (operation error)")
            continue

        if not np.isfinite(new_vals).all():
            print(f"{label:>{width}}: skipped (non-finite values)")
            continue

        if _is_effectively_constant(np.asarray(new_vals)):
            print(f"{label:>{width}}: skipped (constant transformed values)")
            continue

        r, p = pearsonr(new_vals, residuals)
        results[label] = (r, p)
        print(f"{label:>{width}}: r = {r:+.4f},  p = {p:.4f}")

    return results

plot_combined_pairwise_scan(scan_configs, title)

Grouped horizontal bar chart for pairwise interaction scan results.

Applies BH FDR correction across all (operation, pair) combinations and marks significant bars with an asterisk.

Parameters:

Name Type Description Default
scan_configs list[tuple]

Tuples of (prefix, name, results, color, operation_fn).

required
title str

Plot title.

required

Returns:

Type Description
dict[tuple[str, str], bool]

Mapping of (operation name, pair suffix) to significance flag.

Source code in src/featurely/scans.py
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
def plot_combined_pairwise_scan(scan_configs: list[tuple], title: str) -> dict[tuple[str, str], bool]:
    """Grouped horizontal bar chart for pairwise interaction scan results.

    Applies BH FDR correction across all (operation, pair) combinations and
    marks significant bars with an asterisk.

    Args:
        scan_configs: Tuples of (prefix, name, results, color, operation_fn).
        title: Plot title.

    Returns:
        Mapping of (operation name, pair suffix) to significance flag.
    """

    all_entries = []
    all_p_raws = []

    for prefix, name, results, color, _ in scan_configs:
        for label, (r, p) in results.items():
            pair_suffix = label[len(prefix) + 1 :]
            all_entries.append({"op": name, "pair": pair_suffix, "r": r, "color": color})
            all_p_raws.append(p)

    _, p_corr, _, _ = multipletests(all_p_raws, alpha=0.05, method="fdr_bh")

    for entry, pc in zip(all_entries, p_corr, strict=False):
        entry["sig"] = pc < 0.05

    pairs_ordered = sorted({e["pair"] for e in all_entries})
    n_p = len(pairs_ordered)
    n_op = len(scan_configs)
    group_height = 0.8
    bar_h = group_height / n_op
    offsets = np.linspace(-(n_op - 1) * bar_h / 2, (n_op - 1) * bar_h / 2, n_op)

    fig, ax = plt.subplots(figsize=(8, max(5, n_p * 0.45)))
    handles = []

    for op_idx, (prefix, name, results, color, _) in enumerate(scan_configs):
        y_base = np.arange(n_p, dtype=float)
        y_pos = y_base + offsets[op_idx]
        r_vals = []
        sigs = []

        for pair_suffix in pairs_ordered:
            label = f"{prefix}_{pair_suffix}"
            r_val = results.get(label, (0.0, 1.0))[0] if label in results else 0.0
            r_vals.append(r_val)

            e_sig = next(
                (e["sig"] for e in all_entries if e["op"] == name and e["pair"] == pair_suffix),
                False,
            )

            sigs.append(e_sig)

        ax.barh(y_pos, r_vals, height=bar_h * 0.85, color=color, alpha=0.7)
        handles.append(Patch(facecolor=color, alpha=0.7, label=name))

        for yp, r_val, sig in zip(y_pos, r_vals, sigs, strict=False):
            if not sig:
                continue

            if r_val >= 0:
                ax.text(r_val + 0.003, yp, "*", va="center", ha="left", fontsize=9, color="black")

            else:
                ax.text(r_val - 0.003, yp, "*", va="center", ha="right", fontsize=9, color="black")

    ax.set_yticks(np.arange(n_p))
    ax.set_yticklabels(pairs_ordered, fontsize=7)
    ax.axvline(0, color="black", linewidth=0.8)
    ax.set_xlabel("Pearson r (vs baseline residuals)")
    ax.set_title(title)
    ax.legend(handles=handles, loc="lower right")
    plt.tight_layout()
    show_figure()

    return {(e["op"], e["pair"]): e["sig"] for e in all_entries}

plot_significant_pairwise_scatters(scan_configs, sig_dict, df, title, target)

Plot pairwise operation values vs residuals for significant results.

Parameters:

Name Type Description Default
scan_configs list[tuple]

Tuples of (prefix, name, results, color, operation_fn).

required
sig_dict dict[tuple[str, str], bool]

Significance mapping from plot_combined_pairwise_scan.

required
df DataFrame

Input frame containing features and the target.

required
title str

Figure title.

required
target str

Name of the target column used to fit the baseline model.

required
Source code in src/featurely/scans.py
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
def plot_significant_pairwise_scatters(
    scan_configs: list[tuple],
    sig_dict: dict[tuple[str, str], bool],
    df: pd.DataFrame,
    title: str,
    target: str,
) -> None:
    """Plot pairwise operation values vs residuals for significant results.

    Args:
        scan_configs: Tuples of (prefix, name, results, color, operation_fn).
        sig_dict: Significance mapping from ``plot_combined_pairwise_scan``.
        df: Input frame containing features and the target.
        title: Figure title.
        target: Name of the target column used to fit the baseline model.
    """

    x = df.drop(target, axis=1).values
    y_arr = df[target].values
    residuals = y_arr - LinearRegression().fit(x, y_arr).predict(x)

    sig_items = [
        (name, pair_suffix, color, op_fn)
        for _, name, _, color, op_fn in scan_configs
        for (op_name, pair_suffix), is_sig in sig_dict.items()
        if is_sig and op_name == name
    ]

    if not sig_items:
        print("No statistically significant pairwise features found.")
        return

    n_plots = len(sig_items)
    n_cols = min(4, n_plots)
    n_rows = (n_plots + n_cols - 1) // n_cols

    fig, axes = plt.subplots(n_rows, n_cols, figsize=(3.5 * n_cols, 3 * n_rows), squeeze=False)
    fig.suptitle(title, fontsize=10)

    for i, (name, pair_suffix, color, op_fn) in enumerate(sig_items):
        ax = axes[i // n_cols, i % n_cols]

        col_a, col_b = next(
            (a, b)
            for a in df.columns
            for b in df.columns
            if pair_suffix == f"{a}_{b}" and a in df.columns and b in df.columns
        )

        try:
            new_vals = np.asarray(op_fn(df[col_a], df[col_b]))

        except Exception:
            ax.set_visible(False)
            continue

        ax.scatter(new_vals, residuals, color=color, s=4, alpha=0.2)
        r, p = pearsonr(new_vals, residuals)
        ax.set_xlabel(f"{name}({col_a}, {col_b})", fontsize=7)
        ax.set_ylabel("residuals", fontsize=8)
        ax.set_title(f"r = {r:+.3f}  p = {p:.3f}", fontsize=8)
        ax.tick_params(labelsize=7)

    for j in range(n_plots, n_rows * n_cols):
        axes[j // n_cols, j % n_cols].set_visible(False)

    plt.tight_layout()
    show_figure()