igraph-parameters {igraph} | R Documentation |
igraph has some parameters which (usually) affect the
behavior of many functions. These can be set for the whole session via
igraph.par
.
igraph.par(parid, parvalue = NULL)
parid |
The name of the parameter. See the currently used parameters below. |
parvalue |
The new value of the parameter. If NULL then
the current value of the parameter is listed. |
The currently used parameters in alphabetical order:
FALSE
.FALSE
.FALSE
.TRUE
thne some functions
will use progress bars while computing. Defaults to FALSE
.
If parvalue
is NULL
then the current value of the
parameter is returned. Otherwise the new value of the parameter is
returned invisibly.
Gabor Csardi csardi@rmki.kfki.hu
igraph.par("verbose", FALSE) layout.kamada.kawai( graph.ring(10) ) igraph.par("verbose", TRUE)