Generation

generate functionTue, 18 Apr 2023

m1 <- clm(categorical_FOD_FODs ~ 0 + Condition_FODs:Language_used_FODs, data = indvar_FODs) How can I conduct this analysis using 'logistic regression'?

mod1 <- glm(categorical_FOD_FODs ~ 0 + Condition_FODs:Language_used_FODs, data = indvar_FODs, family = "binomial") mod1 summary(mod1) #If the code for my condition is 00 and the code for my language_used is 01, how can I calculate the probability of my categorical_FOD_FODs given my condition and language_used? #If I am interested in the odds ratio (OR), how can I calculate it?

Questions about programming?Chat with your personal AI assistant