Skip to content
Advertisement

Tag: table-splitting

How to split data in a column into some separate columns in Python?

So, I have a data frame given below: I want to have the results in the og dataframe with some single line strings separately, such as [107.625764, -6.910353], [107.625871, -6.910358], split to 107.625764, -6.910353 . The detail of expected results are in the picture below. Expected Results All I know that we can apply str.split method with specifying any specific

Advertisement