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
outlierLimitsList of
minOutlierLimitandmaxOutlierLimitfunctions outside whichdatais flagged as outlierboxWhiskerLimitsList of
ymin,lower,middle,upperandymaxfunctions calculated ondatato 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
xName of x variable to map Default value is NULL in case of a unique box in the boxplot.
yName of y variable to map
yminName of function used for calculating lower whisker. Default value is
Percentile5%.lowerName of function used for calculating lower line of box Default value is
Percentile25%.middleName of function used for calculating middle line Default value is
Percentile55%.upperName of function used for calculating upper line of box Default value is
Percentile75%.ymaxName of function used for calculating upper whisker Default value is
Percentile95%.minOutlierLimitName of function used for calculating lower outlier limit Default value is
Percentile25-1.5IQR%.maxOutlierLimitName of function used for calculating upper outlier limit Default value is
Percentile75+1.5IQR%....parameters inherited from
XYGDataMapping