Description Usage Arguments Value Author(s) See Also Examples
Summarizes the items count and value sum grouped by the different ABC- or ABC/XYZ-Classes.
1 2 |
object |
Object of class |
withMissing |
Logical indicating whether missing categories will be shown. Default is |
A data.table
with the summarized results.
Leon Binder leon.binder@th-deg.de
Bernhard Bauer bernhard.bauer@th-deg.de
Michael Scholz michael.scholz@th-deg.de
computeABCXYZAnalysis
ABCXYZData
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.