Open schw4b opened 3 months ago
The issue seems to be caused by lines 1399 to 1402 in rmsMisc.s
form <- format(form)
which[which == 'offset'] <- '.off.'
form <- as.formula(gsub('offset(', '.off.(', form, fixed=TRUE))
The fix would be:
# form <- format(form)
form <- paste(trimws(format(form)), collapse = " ")
which[which == 'offset'] <- '.off.'
form <- as.formula(gsub('offset(', '.off.(', form, fixed=TRUE))
I get warnings when summarizing my model fits. The warning appears to be related to the number of variables in the model and the length of the variable names. I give a minimal example with 3 long variable names that will cause such a warning.
This will produce the following output warning:
In contrast, glm() does not seem to be irritated: