Skip to content
Advertisement

how to split a column based on a character and append the rest of columns with each split

Consider I have a dataframe:

JavaScript

First, how do I print all the rows that has “|” in column 1? I am trying the following but it prints all rows of the frame:

JavaScript

Second, how do I split the column 1 and column 2 on “|”, so that each split in column 1 gets its corresponding split from column 2 and the rest of the data is appended to each split. For example, I want something like this from df1:

JavaScript

Advertisement

Answer

You can use custom lambda function with Series.str.split and Series.explode for columns specified in list and then add all another columns in DataFrame.join:

JavaScript

For filter by | what is special regex character or add regex=False to Series.str.contains:

JavaScript

Or escape it by |:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement