Skip to content
Advertisement

Tag: explode

df.explode() function not working in python

I am facing a weird issue, I have a column name ‘window’ in a data frame and it has a list of values i.e., [3,9,45,78]. I am trying to explode this column using df.explode(‘window’) but this is doing no job. datatype of ‘window’ column is object. I have checked my pandas version it is – 1.3.4 dataframe example Answer Remember

Advertisement