1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
\name{fit.bd}
\alias{fit.bd}
\alias{fit.yule}
\alias{lik.bd}
\alias{print.fit.bd}
\title{Fits birth-death (speciation/extinction) model to reconstructed phylogeny}
\usage{
fit.bd(tree, b=NULL, d=NULL, rho=1, ...)
fit.yule(tree, b=NULL, d=NULL, rho=1, ...)
lik.bd(theta, t, rho=1, N=NULL)
\method{print}{fit.bd}(x, ...)
}
\arguments{
\item{tree}{object of class \code{"phylo"}.}
\item{b}{birth (speciation) rate. Presently doesn't do anything as the rate cannot be fixed.}
\item{d}{death (extinction) rate. Presently doesn't do anything as the rate cannot be fixed.}
\item{rho}{sampling fraction.}
\item{theta}{vector of \code{b} and \code{d} for likelihood function.}
\item{t}{branching times for calculation of the likelihood.}
\item{N}{number of tips in the tree.}
\item{x}{object of class \code{"fit.bd"} for \code{print} method.}
\item{...}{optional arguments.}
}
\description{
This function fits a birth-death model to a phylogenetic tree with edge lengths.
}
\details{
This function duplicates \code{\link{birthdeath}} in ape and \code{make.bd} in the diversitree package.
}
\value{
\code{fit.bd} generates an object of class \code{"fit.bd"} which can be printed.
}
\references{
Nee, S., May, R. M. and Harvey, P. H. (1994) The reconstructed evolutionary process. \emph{Philosophical Transactions of the Royal Society of London B}, \bold{344}, 305-311.
Stadler, T. (2012) How can we improve the accuracy of macroevolutionary rate estimates? \emph{Systematic Biology}, \bold{62}, 321-329.
Revell, L. J. (2012) phytools: An R package for phylogenetic comparative biology (and other things). \emph{Methods Ecol. Evol.}, \bold{3}, 217-223.
}
\author{Liam Revell \email{liam.revell@umb.edu}}
\seealso{
\code{\link{birthdeath}}
}
\keyword{comparative methods}
\keyword{diversification}
\keyword{phylogenetics}
|