growthplot {PopulationGrowthR} | R Documentation |
Produces plot of the fitted spline function after adjusting for number of Specimens
growthplot(
fit,
ylim = NULL,
xlab = "Year",
ylab = "Adjusted Frequency",
main = fit$name,
...
)
fit |
a "lagphase" fit object to plot |
ylim |
vector of size 2 - limits of the $y$-axis |
xlab |
Label for the $x$-axis |
ylab |
Label for the $y$-axis |
main |
Title of the plot |
... |
(optional) parameters to pass to plot |
Produces a plot of the fit with confidence bands
Species = unique(fdata$Species) #List of all species
fit1 = lagfit(fdata, yeardata, species=Species[1])
growthplot(fit1$fit)