Computes plot and stats from a IFC graph
plotGraph(
obj,
graph,
draw = FALSE,
stats_print = draw,
color_mode = c("white", "black")[1],
add_key = "panel",
precision = c("light", "full")[1],
trunc_labels = 38,
trans = asinh,
bin,
viewport = "ideas",
...
)
an `IFC_data` object extracted with features extracted.
a graph from 'obj' or a list that can be coerced by buildGraph
.
whether to draw plot or not. Default is FALSE.
whether to print stats or not. Default is given by 'draw' argument.
whether to extract colors from 'obj' in white or black mode. Default is "white".
whether to draw a "global" key under title or in the first "panel" or "both". Default is "panel". Accepted values are either: FALSE, "panel", "global", "both" or c("panel", "global"). Note that it only applies when display is seen as overlaying populations.
when graphs is a 2D scatter with population overlay, this argument controls amount of information displayed. Default is "light". -"light", the default, will only display points of same coordinates that are amoung the other layers. -"full" will display all the layers.
maximum number of characters to display for labels. Default is 38.
transformation function for density graphs. Default is asinh.
number of bin used for histogram / density. Default is missing.
either "ideas", "data" or "max" defining limits used for the graph. Default is "ideas". -"ideas" will use same limits as the one defined in ideas. -"data" will use data to define limits. -"max" will use data and regions drawn to define limits.
other arguments to be passed.
it invisibly returns a list whose members are: -plot, "trellis" object that can be displayed using plot, -stats, a table of satistics computed for the graph, -input, a list with input parameters.