duncanbradley / axis-extension

0 stars 0 forks source link

reporting interactions and main effects #2

Closed duncanbradley closed 1 year ago

duncanbradley commented 1 year ago

Several options:

  1. Use summary() to report z-statistics or anova() to report t-statistics

  2. Use drop1(model, scope=c("axis","denominator","axis:denominator"), test="Chisq")

    • pro: computes Chisq for all terms
    • con: Error: Only marginal terms can be dropped from the model (terms that can be dropped while respecting the hierarchy of terms in the model)
  3. Use car::Anova(model, type="III", test.statistic="Chisq")

    • pro: computes Chisq for all terms
    • con: not convinced that these are accurate for my models, given bullet 2 above, and the fact they are identical to the F statistics from anova()
  4. Create individual comparison models to test each fixed effect using anova() (used in Choropleth paper)

  5. Assess interaction term using a Chisq goodness-of-fit test, but assess main effects using z- or t-statistics

    • pro: uses Chisq where possible
    • con: variation in reporting of effects may be inconsistent
duncanbradley commented 1 year ago

Solve:

duncanbradley commented 1 year ago

completed in 407dd1c