model.frame.bbl {bbl} | R Documentation |
Returns the model frame used in BBL fit
## S3 method for class 'bbl'
model.frame(formula, ...)
formula |
Object of class |
... |
Other arguments |
Data frame used for fitting
titanic <- as.data.frame(Titanic)
fit <- bbl(Survived ~ Class + Sex + Age, data=titanic[,1:4], weights=titanic$Freq)
head(model.frame(fit))