(self, n_components)
| 4 | class PCA: |
| 5 | |
| 6 | def __init__(self, n_components): |
| 7 | self.n_components = n_components |
| 8 | self.components = None |
| 9 | self.mean = None |
| 10 | |
| 11 | def fit(self, X): |
| 12 | # mean centering |
nothing calls this directly
no outgoing calls
no test coverage detected