% Generated by roxygen2: do not edit by hand % Please edit documentation in R/simulation.R \name{getCoefficients} \alias{getCoefficients} \title{getCoefficients} \usage{ getCoefficients(list_var, l_dataFromMvrnorm, l_dataFromUser, n_genes) } \arguments{ \item{list_var}{A list of variables (already initialized)} \item{l_dataFromMvrnorm}{Data from the \code{getGeneMetadata} function (optional).} \item{l_dataFromUser}{Data from the \code{getDataFromUser} function (optional).} \item{n_genes}{The number of genes.} } \value{ A dataframe containing the coefficients. } \description{ Get the coefficients. } \examples{ # Example usage list_var <- init_variable() input2mvrnorm = getInput2mvrnorm(list_var) l_dataFromMvrnorm = getDataFromMvrnorm(list_var, input2mvrnorm, n_genes=3) l_dataFromUser = getDataFromUser(list_var) getCoefficients(list_var, l_dataFromMvrnorm, l_dataFromUser, n_genes = 3) }