R/FGP.R

# final germination percentage
# equacao: fgp = n/N x 100
# n is the number of germinated seeds and N is the total number of seeds


FGP <- function(nger, Nseeds) {
 n <- max(nger)
 result <- n/Nseeds * 100
 return(result)
}

Try the SeedCalc package in your browser

Any scripts or data that you put into this service are public.

SeedCalc documentation built on May 2, 2019, 8:26 a.m.