ger_intime | R Documentation |
This function makes a data table with the cumulative sum of values of germination by days.
ger_intime(Factor, SeedN, evalName, method = "percentage", data)
Factor |
Factor which will be graph in time |
SeedN |
Name of the column with the seed numbers |
evalName |
Prefix of the evaluation variable |
method |
Type of cumulative germination. "percentage" or "relative" |
data |
Data with the germination evaluation process |
Need a summary by factor before use it with function SummaryBy.
Data frame with the germination by period
## Not run:
library(GerminaR)
data <- prosopis
grt <- ger_intime(Factor = "temp"
, SeedN = "seeds"
, evalName = "D"
, method = "rel"
, data = data)
head(grt, 10)
fplot(data = grt
, type = "line"
, x = "evaluation"
, y = "mean"
, groups = "temp"
, sig = NULL)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.