Login using Social Account
     Continue with GoogleLogin using your credentials
Now let's join the numerical and categorical pipelines.
Join the two pipeline and save it in a variable named preprocess_pipeline:
from sklearn.pipeline import FeatureUnion
<< your code goes here >> = FeatureUnion(transformer_list=[
        ("num_pipeline", num_pipeline),
        ("cat_pipeline", cat_pipeline),
    ])
Fit the training data in this pipeline:
X_train = preprocess_pipeline.fit_transform(<< your code goes here >>)
Save the labels in y_train:
<< your code goes here >> = train_data["Survived"]
 
            Taking you to the next exercise in seconds...
Want to create exercises like this yourself? Click here.
Note - Having trouble with the assessment engine? Follow the steps listed here
Loading comments...