Permalink
Cannot retrieve contributors at this time
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?
multimodalR/man/setParams.Rd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
45 lines (43 sloc)
1.31 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% Generated by roxygen2: do not edit by hand | |
% Please edit documentation in R/params.R | |
\name{setParams} | |
\alias{setParams} | |
\title{Set parameters} | |
\usage{ | |
setParams(params, update = NULL, ...) | |
} | |
\arguments{ | |
\item{params}{Params object to set parameters in.} | |
\item{update}{list of parameters to set where \code{names(update)} are the | |
names of the parameters to set and the items in the list are values.} | |
\item{...}{additional parameters to set. These are combined with any | |
parameters specified in \code{update}.} | |
} | |
\value{ | |
Params object with updated values. | |
} | |
\description{ | |
Set multiple parameters in a Params object. | |
} | |
\details{ | |
Each parameter is set by a call to \code{\link{setParam}}. If the same | |
parameter is specified multiple times it will be set multiple times. | |
Parameters can be specified using a list via \code{update} (useful when | |
collecting parameter values in some way) or individually (useful when setting | |
them manually), see examples. | |
} | |
\examples{ | |
\dontrun{ | |
params <- newParams() | |
params | |
# Set individually | |
params <- params <- setParams(params,proportions = c(80,20), | |
foldChanges = list("1"=c(2,4),"2"= list("gauss"=c(2,5),"gamma"=c(3,5)))) | |
params | |
# Set via update list | |
params <- setParams(params,update = list("nGenes"=list("1"=10, | |
"2"=list("gauss"=20,"gamma"=10)),"means"=list("1"=c(1,3),"2"=c(2,4)), | |
"nPatients"=700)) | |
params | |
} | |
} |