Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Well done!

You have completed Introduction to pandas!

Instruction

Manipulating Text

Manipulating Text Oftentimes, there will be something a bit off with the string data in your dataset. You may want to replace some characters, change the case, or strip the whitespace. You know, anything you normally need to do with strings. Now, this might lead you to want to loop through each row and manipulate the data, but before you do that, step back and lean into vectorization. ...