forked from luca-scr/qcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NAMESPACE
78 lines (63 loc) · 2.37 KB
/
NAMESPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Import all packages listed as Imports or Depends
import("stats", "utils", "graphics", "grDevices", "ggplot2")
importFrom("MASS", "mvrnorm")
importFrom("gridExtra", "arrangeGrob")
importFrom("grid", "grid.newpage")
importFrom("grid", "grid.draw")
importFrom("scales", "label_percent")
importFrom("cli", "rule")
importFrom("crayon", "bold")
export(qcc, print.qcc, summary.qcc, plot.qcc)
S3method("print", "qcc")
S3method("summary", "qcc")
S3method("plot", "qcc")
export(cusum, print.cusum.qcc, summary.cusum.qcc, plot.cusum.qcc)
S3method("print", "cusum.qcc")
S3method("summary", "cusum.qcc")
S3method("plot", "cusum.qcc")
export(ewma, print.ewma.qcc, summary.ewma.qcc, plot.ewma.qcc)
S3method("print", "ewma.qcc")
S3method("summary", "ewma.qcc")
S3method("plot", "ewma.qcc")
export(mqcc, print.mqcc, summary.mqcc, plot.mqcc)
S3method("print", "mqcc")
S3method("summary", "mqcc")
S3method("plot", "mqcc")
export(print.qccplot)
S3method("print", "qccplot")
export(stats.c, stats.g, stats.np, stats.p, stats.R,
stats.S, stats.T2, stats.T2.single, stats.u,
stats.xbar, stats.xbar.one)
export(sd.c, sd.g, sd.np, sd.p, sd.R,
sd.S, sd.u, sd.xbar, sd.xbar.one)
export(limits.c, limits.g, limits.np, limits.p, limits.R,
limits.S, limits.T2, limits.T2.single,
limits.u, limits.xbar, limits.xbar.one)
export(qccRules,
qccRulesViolatingWER1,
qccRulesViolatingWER2,
qccRulesViolatingWER3,
qccRulesViolatingWER4)
export(paretoChart, print.paretoChart, plot.paretoChart)
S3method("print", "paretoChart")
S3method("plot", "paretoChart")
export(processCapability, print.processCapability,
summary.processCapability, plot.processCapability)
S3method("print", "processCapability")
S3method("summary", "processCapability")
S3method("plot", "processCapability")
export(ocCurves, ocCurves.xbar, ocCurves.R,
ocCurves.S, ocCurves.c, ocCurves.p,
print.ocCurves, plot.ocCurves)
S3method("print", "ocCurves")
S3method("plot", "ocCurves")
export(qcc.options, qccGroups, blues.colors,
ewmaSmooth, causeEffectDiagram, ellipseChart,
qccOverdispersionTest)
export(describe, print.describe)
S3method("print", "describe")
# deprecated
export(pareto.chart, process.capability, oc.curves,
qcc.groups, cause.and.effect, qcc.overdispersion.test)
# exportPattern("^[^\\.]")
# to check exported objects use getNamespaceExports("qcc")