This function is intended to design low-level uses of SIMoNe by specifying various parameters of the underlying algorithms.
setOptions(normalize = TRUE,
verbose = TRUE,
penalties = NULL,
penalty.min = NULL,
penalty.max = NULL,
n.penalties = 100,
edges.max = Inf,
edges.sym.rule = NULL,
edges.steady = "neighborhood.selection",
edges.coupling = "coopLasso",
clusters.crit = "BIC",
clusters.meth = "bayesian",
clusters.qmin = 2,
clusters.qmax = 4)
logical specifying wether the data should be normalized to unit
variance. The normalization is made task-wisely in the multiple
sample setting. Default is TRUE
.
a logical that indicates verbose mode to display
progression. Default is TRUE
.
vector of decreasing penalty levels for the network
estimation. If NULL
(the default), an appropriate vector will
be generated in simone
with n.penalties
entries,
starting from penalty.max
and shrinked to
penalty.min
.
The minimal value of the penalty that will be tried for network
inference. If NULL
(the default), it will be set in simone
to
1e-5
for the monotask framework and to 1e-2
for the
multitask framework.
The maximal value of the penalty that will be tried for network
inference. If NULL
(the default), it will be set to a value
that provoques an empty granph. Default is NULL
.
integer that indicates the number of penalties to put in the
penalties
vector. Default is 100
.
integer giving an upper bound for the number of edges to select: if
a network is inferred along the algorithm with a number of edges
overstepping edges.max
, it will stop there. Default
is Inf
.
a character string indicating the method to use for the network
inference associated to steady-state data, one task
framework. Either "graphical.lasso"
or
"neighborhood.selection"
. Default is the later.
character string (either "coopLasso"
, "groupLasso"
or "intertwined"
) that indicates the coupling method across
task in the multiple sample setup. Defautl is "coopLasso"
.
character string ("AND"
, "OR"
, "NO"
) for
post-symmetrization of the infered networks. Enforced to "NO"
for time-course data (directed network) and set to "AND"
as
default for steady-state data (undirected network).
criterion to select the network that is used to find an underlying
clustering. Either "BIC"
, "AIC"
or an integer for the
number of edges. Default is "BIC"
.
minimum number of classes for clustering. Default is 2.
maximum number of classes for clustering. Default is 4.
character string indicating the strategy used for the estimation:
"variational"
, "classification"
, or
"bayesian"
. See the mixer package for further
details. Default is "bayesian"
.
A list that contains all the specified parameters.
# NOT RUN {
## generate an object (list) with the default parameters
setOptions()
# }
Run the code above in your browser using DataLab