I would like to perform several operations on a particular Series. Is there a way to chain them without continually writing .str? ie if my series is called s and i want to do
s.str.replace("hi", "bye").str.strip().str.lower()
Is that the right way to do things? Seems verbose relative to R so I thought maybe there was a better syntax for this.