group_age | R Documentation |
Cut age information to discrete factors.
group_age(
x,
breaks = "decades",
n = 10,
labels = NULL,
include.lowest = TRUE,
right = FALSE,
dig.lab = 3,
ordered_result = FALSE
)
x |
Numeric vector (age in years) |
breaks |
Class break points. Either a vector of breakpoints, or one of the predefined options ("years", "decades", "even"). |
n |
Number of groups for the breaks = "even" option. |
labels |
labels for the levels of the resulting category. By default,
labels are constructed using |
include.lowest |
logical, indicating if an ‘x[i]’ equal to
the lowest (or highest, for |
right |
logical, indicating if the intervals should be closed on the right (and open on the left) or vice versa. |
dig.lab |
integer which is used when labels are not given. It determines the number of digits used in formatting the break numbers. |
ordered_result |
logical: should the result be an ordered factor? |
Regarding the breaks arguments, the "even" option aims to cut the samples in groups with approximately the same size (by quantiles). The "years" and "decades" options are self-explanatory.
Factor of age groups.
Contact: Leo Lahti microbiome-admin@googlegroups.com
See citation('microbiome')
base::cut
data(atlas1006)
age.numeric <- meta(atlas1006)$age
age.factor <- group_age(age.numeric)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.