This function is meant for bipedal mass estimate (in particular theropod dinosaurs) and offers some of the body mass prediction equations published by Christiansen and Farina (2004) derived from volumetric reconstructions of theropod dinosaurs
CF2004(X, X2 = NULL, eqn, data = NULL)
a value or vector representing the first variable in the equation (in mm)
an optional second variable with same length as X
, should the equation be multiple (see Details) in mm
a character specifying the desired prediction equation (see Details)
an optional object of class = "data.frame"
or class = "matrix"
A vector representing the mass estimate(s) in log grams and grams
Possible bivariate regression equations (eqn =
) include: femur length ("FL"
), femur circumference ("FC"
), femur anteroposterior diameter ("FAP"
), femur mediolateral diameter ("FML"
), tibia circumference ("TC"
), tibia distal mediolateral diameter ("TdistML"
), fibula distal anteroposterior diameter ("FidistAP"
). Multiple regression equations include femur circumference + length ("FC+FL"
), femur mediolateral diameter + femur length ("FML+FL"
), tibia circumference + femur length ("TC+FL"
), tibia length + femur circumference ("TL+FC"
), and tibia circumference + femur anteroposterior diameter ("TC+FAP"
). If a multiple regression equation is chosen, X2 != NULL
. See Christiansen & Farina (2004) for specific details and Campione & Evans (2020) for evaluations of the models.
If a data object is specified, the mass estiamtes will be added as a column to the data.frame or matrix within that object.
Christiansen, P. and Farina, R. A. (2004) Mass prediction in theropod dinosaurs. Historical Biology, 16, 85-92.
Campione, N. E. and Evans, D. C. (2020) The accuracy and precisions of body mass estimation in non-avian dinosaurs. Biological Reviews.
# NOT RUN {
##Bipedal dinosaurs
data(dinosbip)
CF2004(dinosbip$FC, eqn = "FC", data = dinosbip)
# }
Run the code above in your browser using DataLab