| growthCum | R Documentation | 
Generic function to predict the cdf (cummulative density function) of continuous (e.g. size) stage at t+1 given stage at t and a growth object.
growthCum(size, sizeNext, cov, growthObj)
size | 
 vector of current sizes.  | 
sizeNext | 
 vector of sizes in the next time step.  | 
cov | 
 covariate level in this time step (numeric of length 1).  | 
growthObj | 
 a growth object.  | 
a vector of length sizeNext giving the cdf (cummulative density function) of each value of sizeNext.
C. Jessica E. Metcalf, Sean M. McMahon, Roberto Salguero-Gomez, Eelke Jongejans & Cory Merow.
growth
dff <- generateData()
gr1 <- makeGrowthObj(dff)
sizeRange <- c(1:20)
sizeInit <- 1
growthCum(sizeInit, sizeRange, data.frame(cov=1), gr1)
plot(growthCum(sizeInit, sizeRange, data.frame(cov=1), gr1), type="l", 
	col = "dark gray", xlab = "Continuous (e.g. size) stage at time t+1", 
		ylab = paste("Cummulative growth to a specific size in t+1 from size ", 
			sizeInit, " at time t"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.