• gandalf_der_12te
    link
    fedilink
    English
    arrow-up
    23
    ·
    1 年前

    the reason to make plots programmatically is typically because you’re already processing the data in python in ways that would have been too complicated if you’d do it in excel a table calculation program.

      • gandalf_der_12te
        link
        fedilink
        English
        arrow-up
        13
        ·
        1 年前

        that is manual labor each time you run the script, while plotting in python re-makes the plot automatically.

          • Themadbeagle@lemm.ee
            link
            fedilink
            English
            arrow-up
            12
            ·
            1 年前

            Having worked on a programs that automatically generate and process data from excel spreadsheets for a large company, I shuddered when you said that.

            • BeardedGingerWonder@feddit.uk
              link
              fedilink
              English
              arrow-up
              4
              ·
              1 年前

              Oh my, no the other way round, spreadsheet loads the data and let excel handle it. I think you can probably even embed python at this point. I’m not seriously advocating for this approach either, to be clear.

              • mitchty@lemmy.sdf.org
                link
                fedilink
                English
                arrow-up
                2
                ·
                1 年前

                This doesn’t help with reproducibility much. In fact it would make it worse as now you’re throwing windows into the mix needlessly as well as implicitly depending on excel at a point in time. Let’s not introduce more non determinism when it isn’t needed.