For questions relating to generalized linear models.
I'm trying to do a 10-fold cross validation for some glm models that I have built earlier in R. I'm …
r partitioning prediction glm cross-validationCan you tell me what is returned by glm$residuals and resid(glm) where glm is a quasipoisson object. e.…
r glmI am trying to estimate a logistic regression, using the 10-fold cross-validation. #import libraries library(car); library(caret); library(e1071); …
r glm r-caret confusion-matrixI'm working on a project that would show the potential influence a group of events have on an outcome. I'm …
r classification glm cross-validation glmnetI have an outcome variable, say Y and a list of 100 dimensions that could affect Y (say X1...X100). After …
r glmI would like to force specific variables into glm regressions without fully specifying each one. My real data set has ~200 …
r main regression glmSo, I'm trying to compare two models, fit1 and fit2. Initially, I was just doing anova(fit1,fit2), and this …
r model regression glm anovaI have done some searching for this, but the mailing list posts I have found are associated with the person …
r syntax-error glm nonlinear-functionsI want to run a Gaussian GLM with a log link and an offset. The following problems arise: y <…
r offset glm