Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps¶
You can use the method
Series.astypeto cast the type of a series.Series.astype(str)convertsNaNs to the string literalnan. This is often NOT what people want. A better way is to useSeries.astype(object)