% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/utils.R
\name{getGridCombination}
\alias{getGridCombination}
\title{getGridCombination}
\usage{
getGridCombination(l_labels)
}
\arguments{
\item{l_labels}{List of label vectors}
}
\value{
A data frame with all possible combinations of labels
}
\description{
Generates all possible combinations of labels.
}
\examples{
l_labels <- list(
  c("A", "B", "C"),
  c("X", "Y")
)
getGridCombination(l_labels)
}