% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/actual_interactionfixeffects.R
\name{prepareData2computeInteraction}
\alias{prepareData2computeInteraction}
\title{Prepare data for computing interaction values.}
\usage{
prepareData2computeInteraction(
  categorical_vars,
  categorical_varsInInteraction,
  dataActual
)
}
\arguments{
\item{categorical_vars}{A character vector containing the names of categorical variables.}

\item{categorical_varsInInteraction}{A character vector containing the names of categorical variables involved in interactions.}

\item{dataActual}{A data frame containing the actual data with categorical variables and associated expression levels.}
}
\value{
A data frame containing the filtered data for computing interaction values.
}
\description{
This function prepares the data for computing interaction values between variables.
It filters the \code{dataActual} data frame by selecting only the rows where the categorical variables
specified in \code{categorical_vars} are at their reference levels.
}