R/PivotBatchStatistics.R
PivotBatchStatistics.RdThe `PivotBatchStatistics` class contains a set of summary statistics that track how many calculations are batch compatible/incompatible.
R6Class object.
asStringA text description of the batch statistics.
new()Create a new `PivotBatchStatistics` object.
PivotBatchStatistics$new(parentPivot = NULL)incrementNoData()Increment the noData count for a batch.
incrementCompatible()Increment the compatible count for a batch.
PivotBatchStatistics$incrementCompatible(
calculationName = NULL,
calculationGroupName = NULL
)incrementIncompatible()Increment the incompatible count for a batch.
PivotBatchStatistics$incrementIncompatible(
calculationName = NULL,
calculationGroupName = NULL
)# This class should only be created by the pivot table.
# It is not intended to be created outside of the pivot table.