(m: Sequence[Sequence[float]])
| 569 | "table": table, |
| 570 | "records": table.to_dicts(), |
| 571 | "components": eigvecs, |
| 572 | "explained_variance_ratio": explained_ratio, |
| 573 | "mean": means, |
| 574 | "std": stds, |
| 575 | } |
| 576 | |
| 577 | |
| 578 | def _corr_matrix(x: Sequence[Sequence[float]]) -> list[list[float]]: |
| 579 | z, _, _ = _standardize(x) |
no test coverage detected