Javatpoint Logo
Javatpoint Logo

How to Use Cbind in Python?

cbind function is one of the easiest ways to accomplish this. The cbind method (standing for column bind) is a fusion function that combines two data frames having an equal number of different rows into a unified data frame. It's a little more difficult than it appears to connect two Pandas DataFrames having the same count of rows. We employ the cbind function in R. We'll cover how to bind columns of two data frames in Python Pandas using the function known as concat() in this tutorial.

Data Frames with Equal Number of Indices

First, we will create two data frames using the DataFrame function of Pandas.

Creating Dataframe 1:

Code

Output:

How to Use Cbind in Python

Creating Dataframe 2:

Code

Output:

How to Use Cbind in Python

Let's join or column bind the 2 data frames, dataframe1 and dataframe2. The combination of two data frames is done by using the concat() function, which accepts two data frames as a parameter and conducts the process column by column.

Code

Output:

How to Use Cbind in Python

argument axis=1 binds specifies that binding of a data frame is to be done column wise, so the final column bound data frame will be as shown.

Data Frames with Equal Number of Indices

First, we will create two data frames using the DataFrame function of Pandas.

Creating dataframe 1:

Code

Output:

How to Use Cbind in Python

Creating Dataframe 2:

Code

Output:

How to Use Cbind in Python

Notice that the two DataFrames do not have the same index values.

When we try to cbind these dataframes together with the concat() function, we will get the final dataframe as shown:

Code

Output:

How to Use Cbind in Python

This is not the result we wanted.

To correct this, we must manually reset every DataFrame's index prior to concatenating them next to each other:

Code

Output:

How to Use Cbind in Python

We have learned how to perform column bind in Python using the concat() function. Though the actual column bind function, i.e., cbind() of R, is much more convenient than Pandas's concat() function, with some extra lines of code, they two can perform the same operations.


Next TopicPython Asserts





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA