How to Split Tuple Columns in Pandas DataFrames?

Barbara Streisand
Release: 2024-10-25 03:41:02
Original
822 people have browsed it

How to Split Tuple Columns in Pandas DataFrames?

Splitting Tuple Columns in Pandas Dataframes

In Pandas, dataframes may contain columns that hold tuples as their elements. To efficiently extract and manipulate the individual elements of these tuples, a common task is to split them into separate columns. This article provides a detailed demonstration of how to achieve this split.

Consider the following dataframe sample:

<code class="python">import pandas as pd

df = pd.DataFrame({'a': [1, 2], 'b': [(1, 2), (3, 4)]})</code>
Copy after login

The 'b' column contains tuples, and we want to split them into 'b1' and 'b2' columns. To do this, we can utilize the pd.DataFrame(col.tolist()) method applied to the 'b' column:

<code class="python">df[['b1', 'b2']] = pd.DataFrame(df['b'].tolist(), index=df.index)</code>
Copy after login

This operation creates a new dataframe with 'b1' and 'b2' columns, where each tuple element from the original 'b' column is assigned to its corresponding 'b1' and 'b2' column.

The resulting dataframe would now look like this:

<code class="python">print(df)

   a       b  b1  b2
0  1  (1, 2)   1   2
1  2  (3, 4)   3   4</code>
Copy after login

Now, the dataframe has the individual tuple elements split into separate columns, enabling convenient access and manipulation.

The above is the detailed content of How to Split Tuple Columns in Pandas DataFrames?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!