expand.grid {base} | R Documentation |
Create a data frame from all combinations of the supplied vectors or factors. See the description of the return value for precise details of the way this is done.
expand.grid(...)
... |
Vectors, factors or a list containing these. |
A data frame containing one row for each combination of the supplied
factors. The first factors vary fastest. The columns are labelled by
the factors if these are supplied as named arguments or named
components of a list.
Attribute "out.attrs"
is a list which gives the dimension and
dimnames for use by predict
methods.
Chambers, J. M. and Hastie, T. J. (1992) Statistical Models in S. Wadsworth & Brooks/Cole.
expand.grid(height = seq(60, 80, 5), weight = seq(100, 300, 50), sex = c("Male","Female"))