R6 class for mapping y
, GroupMapping
, boxWhiskerLimits
and outlierLimits
to data
See also
Other DataMapping classes:
CumulativeTimeProfileDataMapping
,
DDIRatioDataMapping
,
GroupMapping
,
Grouping
,
HistogramDataMapping
,
ObsVsPredDataMapping
,
ObservedDataMapping
,
PKRatioDataMapping
,
PieChartDataMapping
,
QQDataMapping
,
RangeDataMapping
,
ResVsPredDataMapping
,
ResVsTimeDataMapping
,
TimeProfileDataMapping
,
TornadoDataMapping
,
XYDataMapping
,
XYGDataMapping
Super classes
tlf::XYDataMapping
-> tlf::XYGDataMapping
-> BoxWhiskerDataMapping
Public fields
outlierLimits
List of
minOutlierLimit
andmaxOutlierLimit
functions outside whichdata
is flagged as outlierboxWhiskerLimits
List of
ymin
,lower
,middle
,upper
andymax
functions calculated ondata
to obtain box whiskers
Methods
Inherited methods
Method new()
Create a new BoxWhiskerDataMapping
object
Usage
BoxWhiskerDataMapping$new(
x = NULL,
y,
ymin = tlfStatFunctions$`Percentile5%`,
lower = tlfStatFunctions$`Percentile25%`,
middle = tlfStatFunctions$`Percentile50%`,
upper = tlfStatFunctions$`Percentile75%`,
ymax = tlfStatFunctions$`Percentile95%`,
minOutlierLimit = tlfStatFunctions$`Percentile25%-1.5IQR`,
maxOutlierLimit = tlfStatFunctions$`Percentile75%+1.5IQR`,
...
)
Arguments
x
Name of x variable to map Default value is NULL in case of a unique box in the boxplot.
y
Name of y variable to map
ymin
Name of function used for calculating lower whisker. Default value is
Percentile5%
.lower
Name of function used for calculating lower line of box Default value is
Percentile25%
.middle
Name of function used for calculating middle line Default value is
Percentile55%
.upper
Name of function used for calculating upper line of box Default value is
Percentile75%
.ymax
Name of function used for calculating upper whisker Default value is
Percentile95%
.minOutlierLimit
Name of function used for calculating lower outlier limit Default value is
Percentile25-1.5IQR%
.maxOutlierLimit
Name of function used for calculating upper outlier limit Default value is
Percentile75+1.5IQR%
....
parameters inherited from
XYGDataMapping