Workspace codebook transfer results to Excel

Hi there - I am extremely new to this. Within the Workspace Codebook I was able to receive an output (see attached). How do I move these results into Excel for further analysis?


Thank you for your help!


workbook.jpg

Best Answer

  • nick.zincone
    Answer ✓

    Hi @izzy

    You can use the .to_excel("<your excel>.xlsx") method on a pandas dataframe.

    df.to_excel("example.xlsx")

    You should be able to get more details from the Pandas documentation.

Answers