lotusCum | R Documentation |
Seeds of L. ornithopodioides were harvested in three stages after anthesis and the time course of their germination was evaluated in Petri dishes. This is the dataset as required for nonlinear regression analysis and needs to be transformed into a form that is suitable for time-to-event analysis in R.
data("lotusCum")
A data frame with 180 observations on the following 6 variables.
Stage
a factor with levels A
B
C
Dish
a numeric vector: code for Petri dishes
Time
a numeric vector: inspection time in days
nSeeds
a numeric vector: number of germinated seeds at each time
nCum
a numeric vector: cumulative number of germinated seeds at each time
Prop
a numeric vector: cumulative proportion of germinated seeds at each time
There were 25 seeds per Petri dish. The columns represent the characteristics of each Petri dish. The columns from 1 to 15 represent the number of germinated seeds counted in each assessment time. Seeds of Lotus ornithopodioides were harvested at the following stages (A) Green fleshy pods with brilliant gree sedds (27 Days After Anthesis; DAA), (B) green pergamenous pods with brown soft seeds (35 DAA) and (C) green pergamenous pods with brown seeds and moderately hard (41 DAA).
Data are kindly provided by Fabio Gresta (University of Reggio Calabria, Italy).
Gresta, F., Avola, G., Onofri, A., Anastasi, U., Cristaudo, A., 2011. When Does Hard Coat Impose Dormancy in Legume Seeds? Lotus and Scorpiurus Case Study. Crop Science 51, 1739–1747.
data(lotusCum)
data(lotusCum)
dataset_sd <- decumulate_te(lotusCum,
resp = nCum,
treat_cols = Stage,
monitimes = Time,
units = Dish,
n.subjects = rep(25, 12),
type = "count")
dataset_sd <- decumulate_te(lotusCum,
resp = Prop,
treat_cols = "Stage",
monitimes = Time,
units = Dish,
n.subjects = rep(25, 12),
type = "proportion")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.