Skip to content
Permalink
7a26db24b2
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
25 lines (24 sloc) 557 Bytes
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/params.R
\name{getParams}
\alias{getParams}
\title{Get parameters}
\usage{
getParams(params, names)
}
\arguments{
\item{params}{Params object to get values from.}
\item{names}{vector of names of the parameters to get.}
}
\value{
List with the values of the selected parameters.
}
\description{
Get multiple parameter values from a Params object.
}
\examples{
\dontrun{
params <- newParams()
getParams(params = params,names = c("nGenes","foldChanges","proportions","means"))
}
}