I have this problem with Pandas as from a 'csv' file with multiple columns I would like to generate a new 'csv' file with a single column containing all the values as in the example below:
From:
column 1, column 2, column 3
1, 2, 3,
4, 5, 6
I would like to obtain:
column 1
1
2
3
4
5
6
Thank you all in advance