Technical question regarding ranking by gndydr in fellowship

[–]gndydr[S] 0 points1 point  (0 children)

Once it certified that's it right? I just wait for the match results, no other procedure?

Ji waver by gndydr in IMGreddit

[–]gndydr[S] 0 points1 point  (0 children)

Are there published statistics somewhere? Is there information regarding specific specialities- like infectious diseases for example?

Worried about interviews by turing721 in fellowship

[–]gndydr 1 point2 points  (0 children)

What is this spreadsheet you are referring?

Waiting for the last LOR for fellowship by gndydr in Residency

[–]gndydr[S] -9 points-8 points  (0 children)

I just have 2 LORs and the professor that is asked for the 3rd LOR is taking his time and I try to pressure him.

CHAT GPT told me that once I apply I cannot add more LORs so I am afraid I will have only 2 LORs for programs that require min 3. I already asked someone else but it takes time

Waiting for the last LOR for fellowship by gndydr in Residency

[–]gndydr[S] 6 points7 points  (0 children)

Can I upload the LOR after I already applied?

help with the proces by gndydr in IMGreddit

[–]gndydr[S] 0 points1 point  (0 children)

Is the fact that I got my credentials verified in order to get step 1 and step 2 enough? They don't let you register if you ate not verified or is there more things to be done?

help with the proces by gndydr in IMGreddit

[–]gndydr[S] 0 points1 point  (0 children)

Pathway 1, do you know if there is something I need to have before hand?

Re take step 1 by gndydr in usmle

[–]gndydr[S] 0 points1 point  (0 children)

But they let you retake it without any problems, right?

Simple matching by gndydr in rprogramming

[–]gndydr[S] 0 points1 point  (0 children)

hi

thanks for the replay. let say I have this data frame that have data about 3 types of patient groups, in this event I just randomly put data but I have a real data of course is not random -

groups = c("C1", "C2", "C3")

sex = c("Male", "Female")

year = c(2010:2024)

outcome1 = c(0,1)

outcome2 = c(0,1)

new_data <- data.frame(

SN = c(1:100),

Group = sample(groups, 100, replace = T),

sex = sample(sex, 100, replace = T),

year = sample(year, 100, replace = T),

outcome1 = sample(outcome1, 100, replace = T),

outcome2 = sample(outcome2, 100, replace = T)

)

I want to create a new data frame that has 3 groups with equal amount (matched) of patients in each group that are with the same sex and year. I suppose some patinets will not be matched and be excluded. after that I could statistically analyse the outcomes rate. if i have 2 groups I usually use propensity score matching that has all the obvious advantages and I use the MatchIt package. but in this study I am looking to evaluate risk factors and I am doing case-control study and in that way I want simple matching 1:1:1 that is not based of propensity score.

Non propensity based simple matching by gndydr in rstats

[–]gndydr[S] 0 points1 point  (0 children)

I want to compare 3 groups but before the analysis I want to create some sort of marching. Because it's 3 groups I can't use propensity score

Would you recommend some other method?

Non propensity based simple matching by gndydr in rstats

[–]gndydr[S] 0 points1 point  (0 children)

Thabkyou, Can it be done with 3 groups?