How to Join Two Text Columns into a Single Column in Pandas?

Often one may want to join two text columns into a new column in a data frame. For example, one may want to combine two columns containing last name and first name into a single column with full name. We can use Pandas’ string manipulation functions to combine two text columns easily. There are a… Continue reading How to Join Two Text Columns into a Single Column in Pandas?