I am trying to save a pandas dataframe as .csv file. Currently my code looks like this:
JavaScript
x
3
1
with open('File.csv', 'a') as f:
2
df.to_csv(f, header=False)
3
The saving works but the problem is that the lists in my dataframe are just compressed to [first,second,…,last] and all the entries in the middle are discarded. If I just look at the original dataframe all entries are there. Is there any way how I can convert the list to a string which contains all the elements (str(df) also discards the middle elements) or how I can save a full numpy array in a cell of a csv table?
Thank you for your help, Viviane
Advertisement
Answer
You can probably convert elements present in the list using join method.
example:
JavaScript
1
4
1
lst = ['Hello!','I','am', 'Pandas User','.']
2
strng = ' '.join(lst)
3
print (strng)
4
hope this helps to you.