Quantcast
Channel: The statistical model equivalent to this R formula - Cross Validated
Browsing all 8 articles
Browse latest View live

Answer by Stefan for The statistical model equivalent of this R formula

There is a cool package mentioned in the GLMM FAQs called equatiomatic.Reproducible example:remotes::install_github("datalorax/equatiomatic")#> Skipping install of 'equatiomatic' from a github...

View Article



Answer by Ben Bolker for The statistical model equivalent of this R formula

Depending on the venue, you might want to do this:set up any old linear model (needn't be quasibinomial) with the right formulause equatiomatic::extract_eq() to get the (horrible) LaTeX code for the...

View Article

Answer by R Carnell for The statistical model equivalent of this R formula

glm(formula = prop ~ A * B * C * D , family = quasibinomial, data = data, weights = w)Assume that $A,B,C,D$ are binomial variables with a base case at 0 and alternate at 1.$$logit(prop) =...

View Article

The statistical model equivalent of this R formula

This is how my model is written in R:glm(formula = prop ~ A * B * C * D , family = quasibinomial, data = data, weights = w)This is a quasibinomial generalized linear model used on the logit scale...

View Article

Answer by Stefan for The statistical model equivalent to this R formula

There is a cool package mentioned in the GLMM FAQs called equatiomatic.Reproducible example:remotes::install_github("datalorax/equatiomatic")#> Skipping install of 'equatiomatic' from a github...

View Article


Answer by Ben Bolker for The statistical model equivalent to this R formula

Depending on the venue, you might want to do this:set up any old linear model (needn't be quasibinomial) with the right formulause equatiomatic::extract_eq() to get the (horrible) LaTeX code for the...

View Article

Answer by R Carnell for The statistical model equivalent to this R formula

glm(formula = prop ~ A * B * C * D , family = quasibinomial, data = data, weights = w)Assume that $A,B,C,D$ are binomial variables with a base case at 0 and alternate at 1.$$logit(prop) =...

View Article

The statistical model equivalent to this R formula

This is how my model is written in R:glm(formula = prop ~ A * B * C * D , family = quasibinomial, data = data, weights = w)This is a quasibinomial generalized linear model used on the logit scale...

View Article

Browsing all 8 articles
Browse latest View live




Latest Images