How to transfer data from Quantopian to Excel

40 Views Asked by At

Anyone know how you get a dataframe from Quantopian to excel - I try - results.to_excel results are the name of my dataframe

1

There are 1 best solutions below

0
On

Try this :

Name of your DataFrame: Result.to_csv("result.csv")

here Result is your DataFrame Name , while to_csv() is a function