Skip to content
Advertisement

How to split a dataframe string column into two columns?

I have a data frame with one (string) column and I’d like to split it into two (string) columns, with one column header as ‘fips' and the other 'row'

My dataframe df looks like this:

JavaScript

I do not know how to use df.row.str[:] to achieve my goal of splitting the row cell. I can use df['fips'] = hello to add a new column and populate it with hello. Any ideas?

JavaScript

Advertisement

Answer

There might be a better way, but this here’s one approach:

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