pigeon
pigeon copied to clipboard
Is there some way to get the results as a csv?
I need to have the results as a CSV and I'm not understanding very well how to do it, could someone help me?
The way I do it in Jupyter notebook: annotations_df = pd.DataFrame(annotations)
import io s_buf = io.StringIO() annotations_df.to_csv(s_buf) annotations_df.to_csv('annotations.csv', index=False)