How to Combine Two Text Columns in a DataFrame? (2024)

We sometimes need to create columns by combining two or more columns together. In this how-to article, we will learn how to combine two text columns in Pandas and PySpark DataFrames.

How to Combine Two Text Columns in a DataFrame? (2)

Pandas

We can combine text columns with the “+” operator.

df["full_name"] = df["first_name"] + " " + df["last_name"]

The expression in between is used for adding a space between the first and last names. Another way of combining text columns is aggregating columns by joining.

df["full_name"] = df[["first_name","last_name"]].agg(" ".join, axis=1)

We can use both these methods to combine as many columns as needed. The only requirement is that the columns must be of object or string data type.

PySpark

We can use the concat function for this task.

df = df.withColumn( "full_name", F.concat("first_name", F.lit(" "), "last_name"))

The lit function is used for adding the space between the first and last names.

This question is also being asked as:

  • Python combining two columns.

People have also asked for:

How to Combine Two Text Columns in a DataFrame? (3)

Control All your GenAI Apps in minutes

How to Combine Two Text Columns in a DataFrame? (2024)
Top Articles
Latest Posts
Article information

Author: Tuan Roob DDS

Last Updated:

Views: 6642

Rating: 4.1 / 5 (62 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Tuan Roob DDS

Birthday: 1999-11-20

Address: Suite 592 642 Pfannerstill Island, South Keila, LA 74970-3076

Phone: +9617721773649

Job: Marketing Producer

Hobby: Skydiving, Flag Football, Knitting, Running, Lego building, Hunting, Juggling

Introduction: My name is Tuan Roob DDS, I am a friendly, good, energetic, faithful, fantastic, gentle, enchanting person who loves writing and wants to share my knowledge and understanding with you.