CF2004 {MASSTIMATE}R Documentation

Body Mass Estimates Using Christiansen and Farina (2004)

Description

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

Usage

CF2004(X, X2 = NULL, eqn, data = NULL)

Arguments

X

a value or vector representing the first variable in the equation (in mm)

X2

an optional second variable with same length as X, should the equation be multiple (see Details) in mm

eqn

a character specifying the desired prediction equation (see Details)

data

an optional object of class = "data.frame" or class = "matrix"

Details

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.

Value

CF2004

A vector representing the mass estimate(s) in log grams and grams

Author(s)

Nicolas E. Campione

References

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.

See Also

cQE bipeds AHR1985 CM1992

Examples

##Bipedal dinosaurs
data(dinosbip)
CF2004(dinosbip$FC, eqn = "FC", data = dinosbip)

[Package MASSTIMATE version 2.0-1 Index]