How to combine multiple rows into a single row with pandas
I need to combine multiple rows into a single row, that would be simple concat with space View of my dataframe: tempx value 0 picture1 1.5 1 picture555 1.5 2 picture255 1.5 3 picture365 1.5 4 picture112 1.5 I want the dataframe to be converted like this: (space separated) tempx values Expected output: tempx value … Read more