← All posts

Polynomial vs. Multinomial Regression in Clinical Research

Clinical Epidemiology ResearchUniqcret doctor knowledgesData Analytics or Statistics

🔍 Polynomial vs. Multinomial Regression in Clinical Research

1. Polynomial Regression

Purpose: Captures nonlinear trends in continuous outcomes using powers of a predictor (e.g., age, dosage).

Example Use: Modeling birth weight across gestational age — expecting a curved (non-linear) trend.

Structure:

Interpretation:

Stata Tip:

gen age2 = age^2
regress bp age age2

2. Multinomial Regression

Purpose: Models categorical outcomes with 3 or more unordered groups.

Example Use: Delivery mode (vaginal, elective CS, emergency CS).

Structure:

Interpretation:

Stata Tip:

mlogit delivery_mode i.maternal_age i.gestational_age, baseoutcome(1)


🧮 Polynomial Logistic vs. Multinomial Logistic Regression

3. Polynomial Logistic Regression

Purpose: Extends logistic regression to capture non-linear effects of continuous predictors on a binary outcome.

Example Use: Risk of preeclampsia modeled against maternal age and age².

Structure:

Interpretation:

Stata Tip:

gen age2 = age^2
logistic preeclampsia age age2

4. Multinomial Logistic Regression

Purpose: Logistic analogue of multinomial regression. Predicts probabilities of multiple non-ordered categories.

Same as #2, but uses logistic framework to derive log-odds or RRR.

Stata Tip (same):

mlogit outcome i.exposure i.predictors, rrr


🔹 Without "logistic" = Regression for continuous outcomes

🧠 You're predicting a value or group.

🔸 With "logistic" = Regression for categorical outcomes (esp. binary)

🧠 You're predicting the chance (odds or probability) of being in a category.


📊 Summary Table

ModelOutcome TypePredictorOutput TypeClinical Use Case
Polynomial RegressionContinuousContinuous (X²)Beta coefficientsCurved dose-response (e.g., age vs. BP)
Multinomial RegressionCategorical (≥3)AnyRRRsMode of delivery, infection types
Polynomial LogisticBinaryContinuous (X²)Odds ratiosU-shaped risk curves (e.g., age vs. disease risk)
Multinomial LogisticCategorical (≥3)AnyRRRsType of referral diagnosis, treatment decisions

Comments

No comments yet. Be the first to share your thoughts.

Sign in to comment