PivotBatchStatistics | R Documentation |
The 'PivotBatchStatistics' class contains a set of summary statistics that track how many calculations are batch compatible/incompatible.
R6Class
object.
asString
A text description of the batch statistics.
new()
Create a new 'PivotBatchStatistics' object.
PivotBatchStatistics$new(parentPivot = NULL)
parentPivot
The pivot table that this 'PivotBatchStatistics' instance belongs to.
A new 'PivotBatchStatistics' object.
reset()
Clear the batch statistics.
PivotBatchStatistics$reset()
No return value.
incrementNoData()
Increment the noData count for a batch.
PivotBatchStatistics$incrementNoData( calculationName = NULL, calculationGroupName = NULL )
calculationName
The name of the calculation to increment the count for.
calculationGroupName
The name of the calculation group for the calculation.
No return value.
incrementCompatible()
Increment the compatible count for a batch.
PivotBatchStatistics$incrementCompatible( calculationName = NULL, calculationGroupName = NULL )
calculationName
The name of the calculation to increment the count for.
calculationGroupName
The name of the calculation group for the calculation.
No return value.
incrementIncompatible()
Increment the incompatible count for a batch.
PivotBatchStatistics$incrementIncompatible( calculationName = NULL, calculationGroupName = NULL )
calculationName
The name of the calculation to increment the count for.
calculationGroupName
The name of the calculation group for the calculation.
No return value.
clone()
The objects of this class are cloneable with this method.
PivotBatchStatistics$clone(deep = FALSE)
deep
Whether to make a deep clone.
# This class should only be created by the pivot table.
# It is not intended to be created outside of the pivot table.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.