this post was submitted on 09 Nov 2023
1226 points (99.0% liked)

Science Memes

9997 readers
2731 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

  1. Don't throw mud. Behave like an intellectual and remember the human.
  2. Keep it rooted (on topic).
  3. No spam.
  4. Infographics welcome, get schooled.


Sister Communities

Science and Research

Biology and Life Sciences

Physical Sciences

Humanities and Social Sciences

Practical and Applied Sciences

Memes

Miscellaneous

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 23 points 9 months ago (1 children)

Kinda related, in the company I used to work everything was done in SAS, an statistical analysis software (SAS duh) that fucking sucks. It's used to be great, but once your on their environment you are trapped for fucking forever. I hated it and refuse to learned it over what was basic for my daily tasks. A couple of months I moved to another company that used to pay a consulting firm for my job, so my boss and me had to start everything fresh and the first thing we did was to study what are going to use as statistics software and I fight tooth and nails for Python and one of the points I pushed was that if in the future we decide to move out of Python we could easily can do it, while other solutions could locked up us with them.

[–] [email protected] -4 points 9 months ago* (last edited 9 months ago) (3 children)

If you rely on free packages in Python for processing, those are as likely to become obsolete as anything else (if not more likely). I also really dislike the compatibility issues with different versions of different packages, the whole environment aspect. Buying new computer with different version of windows? Who knows what will work there.

In this sense for scientific computation I prefer something like MATLAB. Code written 40 years ago, most likely would still work. New computer? No problem, no configuration, just install Matlab, and it runs! Yes, it costs money, but you get what you paid for. Mathematica is another option, but I mean ugh!

[–] [email protected] 4 points 9 months ago

I mostly use pandas that I don't think is going anywhere, we're also going to start tests with a library called 'chainladder' that is used for some actuarial reserves calculations, from everything else I'm programming custom functions because as far as I know, there's not a lot of actuarial mathematics libraries on Python (R have much more support for that, but I prefer the flexibility of Python, like a good portion of my job is scrapping our regulatory body website for information and not sure how good R work on that).

[–] [email protected] 2 points 9 months ago

Matlab is ugly because it's so backwards compatible. And it only is backwards compatible until someone decides to use it to interface with external hardware that you need a specific version of some library for.

[–] [email protected] 1 points 9 months ago

If you really don't want to spend money, there's always GNU Octave. Sure, it doesn't have the thousands of matlab toolboxes, but if you're running code from 40 years ago it shouldn't need those anyway. I wrote a couple of scripts recently and then rewrote them slightly so that they would be compatible with octave.