How can I convert an object dtype structure to a string dtype? The method below is not working and the column remains object after converting to a string with <
object
You are converting it to a str. non-null object is how pandas handles str in some cases.
str
non-null object
Check out this article on pandas data types.
Check out the most recent official docs on dtypes.