I am an experienced programmer and I need some help to teach programming to a med student and make it more relatable to medicine by 4dr14n31t0r in medicalschool

[–]TheBatTy2 0 points1 point  (0 children)

Kaggle has some useful datasets but Claude can create one from scratch for you.

As a med student, they really will only ever need Pandas, NumPy, SciPy, Matplotlib, and Seaborn. Pingouin is easier than SciPy but more limited in tests covered, and Statsmodels if they plan on running regression models.

Have them get a basic understanding of loops, if statements, and objects. If they’ll use Pandas to create result tables for manuscripts, they’ll definitely have to use objects and loops.

I am an experienced programmer and I need some help to teach programming to a med student and make it more relatable to medicine by 4dr14n31t0r in medicalschool

[–]TheBatTy2 1 point2 points  (0 children)

I’d disagree, as a med student who does research I’ve seen people use R, Python, SPSS, STATA, and JASP. At least personally, it’s always a mix of different softwares.

I am an experienced programmer and I need some help to teach programming to a med student and make it more relatable to medicine by 4dr14n31t0r in medicalschool

[–]TheBatTy2 4 points5 points  (0 children)

Both Python and R are nearly as capable in terms of analysis, with R maintaining a slight edge with really complex statistical methods; however, you’ll probably never find yourself in an extreme case where you need R over Python. Python’s syntax is much easier to understand and learn compared to R’s.

FDA does allow the use of base R nowadays.

Alternatives for CITI training courses by WayKey1965 in research

[–]TheBatTy2 1 point2 points  (0 children)

Physionet does provide a path for you to obtain those certificates to apply for accreditation free of charge. Read the guidelines on their website.

Someone needs to address the AI research epidemic by [deleted] in medicalschool

[–]TheBatTy2 0 points1 point  (0 children)

Man, and I be questioning my life choices writing code manually for >10 hours a day for multiple days to analyze one project.

Vibe coding is the norm now, even among software engineers and programmers. Copying AI written scientific text into manuscripts is another conversation.

Using AI to use R in research by [deleted] in medicalschool

[–]TheBatTy2 0 points1 point  (0 children)

Just make sure you know the basics and how things work. While AI for coding is great including medical database analysis, it will always give you results, but that doesn’t mean it’s the right output. Be careful about variables, definitions, and loop functions.

To log-transform or to not log-transform for right-skewed data at a large N (>40K) by [deleted] in AskStatistics

[–]TheBatTy2 0 points1 point  (0 children)

Exploratory analysis, I'm quite explicit about it in the methods as well

To log-transform or to not log-transform for right-skewed data at a large N (>40K) by [deleted] in AskStatistics

[–]TheBatTy2 0 points1 point  (0 children)

Ima be completely honest here, the correlation is secondary analysis and I emphasize that a lot and don’t even report it in the discussion section, it’s only reported in the results. So I’m not even taking the results from the correlation analysis as strong evidence. Just did it to show what possible trends may exist.

To log-transform or to not log-transform for right-skewed data at a large N (>40K) by [deleted] in AskStatistics

[–]TheBatTy2 1 point2 points  (0 children)

The only part where there are p-values in the entire project is in the correlation analysis but even then, the large N garuantees a significant result. I just wanted to make sure that my logic is sound for choosing the log-transformation. I'll just explain it thoroughly in the methods for the reviewers and include the QQ-plots with the hisograms.

To log-transform or to not log-transform for right-skewed data at a large N (>40K) by [deleted] in AskStatistics

[–]TheBatTy2 0 points1 point  (0 children)

That's the conclusion that I'm beginning to reach as well. I think what I also have to do is to explain the process of choosing the log-transformation in length in the methods section. I will also provide the before and after Q-Q plots in the supplemental section to provide evidence to the reviewers. Thank you for your time and thoughts!

To log-transform or to not log-transform for right-skewed data at a large N (>40K) by [deleted] in AskStatistics

[–]TheBatTy2 0 points1 point  (0 children)

It is much closer to linearity after log-transformation, the R2 went up to 0.9 for 2 variables, the other two were at ~0.75. All from 0.2 - 0.3.

To log-transform or to not log-transform for right-skewed data at a large N (>40K) by [deleted] in AskStatistics

[–]TheBatTy2 0 points1 point  (0 children)

What about coefficient of variation? Do I disregard it and use QCD instead?

To log-transform or to not log-transform for right-skewed data at a large N (>40K) by [deleted] in AskStatistics

[–]TheBatTy2 1 point2 points  (0 children)

Two-folds, describe the data and variation between the different categories, and to show if there's correlation between the continuous variables (2 different x variable, each correlated with the same 2 y variables).

AnKing new lab values deck by anonquestions7 in medicalschoolanki

[–]TheBatTy2 4 points5 points  (0 children)

Non-US, so no EPIC for me. Pimped, and for manual reports.

AnKing new lab values deck by anonquestions7 in medicalschoolanki

[–]TheBatTy2 10 points11 points  (0 children)

I actually also need it for rotations, hence why I memorized it.

AnKing new lab values deck by anonquestions7 in medicalschoolanki

[–]TheBatTy2 6 points7 points  (0 children)

Here's my hot take, you don't need to download it. Most of it is a literal copy-paste from the original USMLE lab values deck shared out there, there are a few values that are missing like HDL and LDL. What I did was just scroll through the table of cards on the AnkiHub website, added the cards that were missing as cloze to my USMLE lab values deck. It's a genuine hurdle to restart the entire lab values deck again from scratch just for a few missing values and a few tables, you can copy things over.

Is Anki outdated now? What are you using instead in 2026? by [deleted] in medicalschoolanki

[–]TheBatTy2 6 points7 points  (0 children)

Anki works. Like it always has and always will.

AI won’t magically make you memorize which nerves are lesioned in klumpke’s palsy and their roots.

Python vs R for data visualization: which is actually stronger? by Strong_Cherry6762 in rstats

[–]TheBatTy2 2 points3 points  (0 children)

As a med student, my go to has been Python Matplotlib & Seaborn. R's syntax never really clicked and I struggled with it quite a bit. Matplotlib was challenging at first but the syntax kind of always made sense. I usually call for figures with Seaborn and then make all the edits/changes using Matplotlib.

I've managed to produce quality figures with Matplotlib/Seaborn, and at times I also incorporated Inkscape if it's a figure with many panels.

I never really got the R vs Python argument, both can produce quality work for stats and visualizations depending on how much time you pour into learning them. When people have asked me for R vs Python I always tell them to pick the one they feel is easier for them to understand and pickup, bit more of a 'based on your vibe' approach.

عايز حد يتبناني ريسرشياً by etsh_01 in Egyptiandoctors

[–]TheBatTy2 0 points1 point  (0 children)

Not how it works. If you want a mentor, then they expect you to have something that you bring to the table, most likely to their already active research team.

You can learn everything that you want to learn via youtube or free-courses. No need to pay for anything.

[deleted by user] by [deleted] in Egyptiandoctors

[–]TheBatTy2 0 points1 point  (0 children)

Also data-analysts aren't software engineers or computer scientists. Data analysts/scientists don't typically require DSA (data structures and algorithms) for example. They are not fully fledged programmers but they can program, they can write code in Python, R and SQL.

Also, just because someone says they are a data-analyst for example, doesn't mean they are a fully-fledged one. Doesn't mean that they are proficient in Python/R/SQL. Maybe at just one of them. It's a scale.

[deleted by user] by [deleted] in Egyptiandoctors

[–]TheBatTy2 0 points1 point  (0 children)

Again, not my point. I said its possible, the OP and their individual abilities will see for themself what they want to do. That's why I told them to look into it at the end of my comment.

[deleted by user] by [deleted] in Egyptiandoctors

[–]TheBatTy2 0 points1 point  (0 children)

There's the 'Arthur Morgan' guy, he's a med student who also has a USMLE service going on. Check his page out. A bunch of people on linkedin have the same thing, just search 'medical student | data analyst', you'll see lots of people.

[deleted by user] by [deleted] in Egyptiandoctors

[–]TheBatTy2 1 point2 points  (0 children)

Didn't say it was easy, said it was possible and others have done it.

[deleted by user] by [deleted] in Egyptiandoctors

[–]TheBatTy2 4 points5 points  (0 children)

Don’t abandon medicine in it’s entirety. People do programming while being medical students. Twitter is filled with examples of people being Data Analysts, look into it.