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 |
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 | |
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 |
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 | |
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. |
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 |
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 | |
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 | |
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 |
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 | |
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 |
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 | |
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 | |
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 |
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 | |