summary,ABCXYZData-method {matman} | R Documentation |
Prints the result summary of an ABC/XYZ analysis
Description
Summarizes the items count and value sum grouped by the different ABC- or ABC/XYZ-Classes.
Usage
## S4 method for signature 'ABCXYZData'
summary(object, withMissing = FALSE)
Arguments
object |
Object of class |
withMissing |
Logical indicating whether missing categories will be shown. Default is |
Value
A data.table
with the summarized results.
Author(s)
Leon Binder leon.binder@th-deg.de
Bernhard Bauer bernhard.bauer@th-deg.de
Michael Scholz michael.scholz@th-deg.de
See Also
computeABCXYZAnalysis
ABCXYZData
Examples
# ABC Analysis
data("Amount")
abcResult = computeABCXYZAnalysis(data = Amount,
value = "value",
item = "item",
timestamp = "date")
summary(abcResult)
# ABC/XYZ Analysis
data("Amount")
abcxyzResult = computeABCXYZAnalysis(data = Amount,
value = "value",
item = "item",
timestamp = "date",
temporalAggregation = "week",
XY = 0.3, YZ = 0.5)
summary(abcxyzResult)
[Package matman version 1.1.3 Index]