It's for my mother, who so far cannot stand LibreOffice.

you are viewing a single comment's thread
view the rest of the comments
[–] 2 points 2 years ago (1 child)

If I’m doing anything substantial, calculation-wise, I use openpyxl.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 2 points 2 years ago (1 child)
  • [–] 2 points 2 years ago*

    You might also find the Python library pandas useful. Its “DataFrames” can mirror your excel data 1:1 and you have convenience methods like to_excel(). Easy to combine with numpy for performant matrix math.

    XLSX just becomes a container for storing/sharing your data, and while Python is used for analysis. I would use matplotlib for plotting rather than embedding in the sheet.

  • source
  • parent