MCPcopy
hub / github.com/scikit-learn/scikit-learn / transform

Method transform

sklearn/utils/_testing.py:1290–1293  ·  view source on GitHub ↗
(self, X, y=None)

Source from the content-addressed store, hash-verified

1288 return self
1289
1290 def transform(self, X, y=None):
1291 check_is_fitted(self)
1292 X = check_array(X)
1293 return X
1294
1295 def fit_transform(self, X, y=None):
1296 return self.fit(X, y).transform(X, y)

Callers 1

fit_transformMethod · 0.45

Calls 2

check_is_fittedFunction · 0.90
check_arrayFunction · 0.90

Tested by

no test coverage detected