Gerenic plot of the GroupedScoreTable
plot.GroupedScoreTable.Rd
Generic plot using ggplot2
. It plots ScoreTables for all
groups by default, or only chosen ones using when group_names
argument is specified.
Usage
# S3 method for GroupedScoreTable
plot(
x,
scale_name = NULL,
group_names = NULL,
strict_names = TRUE,
plot_grid = is.intersected(x),
...
)
Arguments
- x
A
GroupedScoreTable
object- scale_name
if scores for multiple scales available, provide the name of the scale for plotting.
- group_names
names specifying which groups should appear in the plots
- strict_names
If
TRUE
, then intersected groups are filtered using strict strategy:group_names
need to be provided in form:"group1:group2"
. IfFALSE
, then intersected groups will be taken into regard separately, so eg. when"group1"
is provided togroup_names
, all of:"group1:group2"
,"group1:group3"
,"group1:groupN"
will be plotted. Defaults toTRUE
- plot_grid
boolean indicating if the
ggplot2::facet_grid()
should be used. IfFALSE
, thenggplot2::facet_wrap()
is used. If groups are not intersected, then it will be ignored andfacet_wrap
will be used.- ...
named list of additional arguments passed to
facet
function.