this post was submitted on 04 Apr 2025
465 points (97.2% liked)
Science Memes
14085 readers
3012 users here now
Welcome to c/science_memes @ Mander.xyz!
A place for majestic STEMLORD peacocking, as well as memes about the realities of working in a lab.
Rules
- Don't throw mud. Behave like an intellectual and remember the human.
- Keep it rooted (on topic).
- No spam.
- Infographics welcome, get schooled.
This is a science community. We use the Dawkins definition of meme.
Research Committee
Other Mander Communities
Science and Research
Biology and Life Sciences
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- !reptiles and [email protected]
Physical Sciences
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
Humanities and Social Sciences
Practical and Applied Sciences
- !exercise-and [email protected]
- [email protected]
- !self [email protected]
- [email protected]
- [email protected]
- [email protected]
Memes
Miscellaneous
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
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.
Dump it out as a CSV and import it to excel?
that is manual labor each time you run the script, while plotting in python re-makes the plot automatically.
You could just automate the generation of the excel sheet as well - it's really just pick your poison.
Having worked on a programs that automatically generate and process data from excel spreadsheets for a large company, I shuddered when you said that.
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.
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.