birds.df | R Documentation |
An undocumented data set concerning birds.
data("birds.df")
A data frame with 67 observations on the following 15 variables.
Species
a character vector
Status
a numeric vector
Length
a numeric vector
Mass
a numeric vector
Range
a numeric vector
Migr
a numeric vector
Insect
a numeric vector
Diet
a numeric vector
Clutch
a numeric vector
Broods
a numeric vector
Wood
a numeric vector
Upland
a numeric vector
Water
a numeric vector
Release
a numeric vector
Indiv
a numeric vector
This is a data set used in a book (or in a
draft version of a book).
Unfortunately very few details seem
available concerning the background and
the variables.
The purpose of its inclusion in
VGAMdata is to show that
a logistic regression applied to these data,
mimicking the book,
has estimates suffering from the
Hauck–Donner effect (HDE;
hdeff
).
It is called model.final
in the
book.
http://rcompanion.org/documents/RCompanionBioStatistics.pdf
,
around pages 249–.
data(birds.df)
str(birds.df)
model.final.copy <- # Try mimic the book example
vglm(Status ~ Upland + Migr + Mass + Indiv + Insect + Wood,
binomialff, data = birds.df, trace = TRUE)
summary(model.final.copy, hde.NA = FALSE) # Wald table
hdeff(model.final.copy)
hdeff(model.final.copy, deriv = 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.