FAQ: Machine Learning Pipelines - Data Cleaning (Categorical)

This community-built FAQ covers the “Data Cleaning (Categorical)” exercise from the lesson “Machine Learning Pipelines”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Machine Learning/AI Engineer Career Path

FAQs on the exercise Data Cleaning (Categorical)

There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply (reply) below.

If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!
You can also find further discussion and get answers to your questions over in Language Help.

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head to Language Help and Tips and Resources. If you are wanting feedback or inspiration for a project, check out Projects.

Looking for motivation to keep learning? Join our wider discussions in Community

Learn more about how to use this guide.

Found a bug? Report it online, or post in Bug Reporting

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

This exercise is poorly written. It says that you should use sparse=‘False’, but sparse parameter does not take a string argument, but a bool. So it should be sparse=False.
Also, the exercise asks you to compare x_test_fill_missing_ohe with the transformation you get when calling the pipeline on x_test_fill_missing. However, it does not mention that the one hot encoder used to create x_test_fill_missing_ohe has a second parameter which is drop=‘first’. This lack of information causes confusion because when you try to compute the absolute difference between the 2 matrices, you get the error:

ValueError: operands could not be broadcast together with shapes (1045,2) (1045,3)

Same for the one before this. Just coding the pipeline and comparing will not give you the same arrays. For 95% of the course we were fit and transforming the train data and validating on the test data. All of a sudden we’re fitting on the train data and trasforming on the test data? Or am I confused. The hints don’t really help either and you never receive a reply in the forums…I’m getting the feeling I wasted my money and time and that I could have better tried to learn on DeepLearning.com