evalml.pipelines.utils.
make_pipeline
generates a pipeline class with a preprocessing chain which was recommended based on the inputs. The pipeline will be a subclass of the appropriate pipeline base class for the specified problem_type.
X (pd.DataFrame) – The input data of shape [n_samples, n_features]
y (pd.Series) – The target data of length [n_samples]
estimator (Estimator) – Estimator for pipeline
problem_type – Problem type for pipeline to generate