Hi I have the following data in a Python dataframe:
input_string value
Apple 5
Apple 6
Pear 2
Pear 4
Grape 5
Grape 7
I want the output to write into a csv file as
input_string,col1,col2
Apple,5,6
Pear,2,4
Grape,5,7
How can I achieve that? I tried using group by
df_combined_values = (df.groupby('input_string', sort=False)['value'].agg([lambda x: ','.join(map(str, x))]).reset_index())
print(df)
df_combined_values.to_csv(r'C:/someFolder/output_file.csv', index=False, quoting=csv.QUOTE_NONE, encoding='utf8', escapechar='\\')
The print command yeilds
input_string <lambda>
0 Apple 5,6
1 Pear 2,4
2 Grape 5,7
But the csv file shows:
input_string,<lambda>
Apple,5\,6
Pear,2\,4
Grape,5\,7
Try this code:
Result