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 |
The currently used parameters in alphabetical order:
print.edge.attributesLogical constant, whether to print edge
attributes when printing graphs. Defaults to FALSE
.
print.graph.attributesLogical constant, whether to print
graph attributes when printing graphs. Defaults to FALSE
.
print.vertex.attriubutesLogical constant, whether to print
vertex attributes when printing graphs. Defaults to FALSE
.
verboseLogical constant, whether igraph functions should
talk more than minimal. Eg. if 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)