Learn R Programming

pivottabler (version 0.4.0)

PivotCalculation: A class that defines a calculation.

Description

The PivotCalculation class defines one calculation in a pivot table.

Usage

PivotCalculation

Arguments

Value

Object of R6Class with properties and methods that define a single pivot table calculation.

Format

R6Class object.

Fields

parentPivot

Owning pivot table.

calculationName

Calculation unique name. Recommendation: Do not have spaces in this name.

caption

Calculation display name - i.e. the name shown in the pivot table.

visible

Show or hide the calculation. Hidden calculations are typically used as base values for other calculations.

displayOrder

The order the calculations are displayed in the pivot table.

filters

Any data filters specific to this calculation. A PivotFilters object.

format

A character, list or custom function to format the calculation result.

dataName

Specifies which data frame in the pivot table is used for this calculation.

type

The calculation type: "summary", "calculation", "function" or "value".

valueName

For type="value", the name of the column containing the value to display in the pivot table.

summariseExpression

For type="summary", either the dplyr expression to use with dplyr::summarise() or a data.table calculation expression.

calculationExpression

For type="calculation", an expression to combine aggregate values.

calculationFunction

For type="function", a reference to a custom R function that will carry out the calculation.

basedOn

A character vector specifying the names of one or more calculations that this calculation depends on.

noDataValue

An integer or numeric value specifying the value to use if no data exists for a particular cell.

noDataCaption

A character value that will be displayed by the pivot table if no data exists for a particular cell.

Methods

Documentation

For more complete explanations and examples please see the extensive vignettes supplied with this package.

new(...)

Create a new pivot calculation, specifying the field values documented above.

asList()

Get a list representation of this calculation.

asJSON()

Get a JSON representation of this calculation.

asString()

Get a text representation of this calculation.

Examples

Run this code
# NOT RUN {
# This class should only be created by the pivot table.
# It is not intended to be created outside of the pivot table.
# }

Run the code above in your browser using DataLab