Description Usage Arguments Details Value Author(s) References See Also Examples
Produces a Duewer concordance/apparent precision plot, showing relative precision or uncertainty plotted against (relative) deviation from assigned value.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | dplot(x, ...)
duewer.plot(x, ...)
## Default S3 method:
duewer.plot(x,s,mu=median(x),sigma=mad(x), s0=median(s), labels=NA,
radius=1:3, units=c("z","x"),
main, xlab, ylab, xlim, ylim,
at.xax=NULL, at.yax=NULL, aspect,
col.contours="lightgrey", lty.contours=par("lty"), lwd.contours=par("lwd"),
label.contours=T, format.clab="p=%4.3f",
cex=par("cex"), cex.label=0.7, pos=3, adj=NULL,
pos.clab="bottomright", col.clab=col.contours,
cex.axis=par("cex.axis"), pch=par("pch"), las=par("las"),
col=par("col"), bg=par("bg"), ...)
|
x |
Numeric vector of values to be plotted. |
s |
Numeric vector of standard deviations, standard errors or uncertainties
of length |
mu |
A single location against which to compare x. |
sigma |
A measure of dispersion against which deviations x-mu can be compared. |
s0 |
A typical, expected or reference value for the standard uncertainties s |
labels |
An optional vector of point labels of length |
radius |
A vector of radii for reference lines in the classic Duewer plot. |
units |
Controls scaling of the plot. If set to |
main |
Main title for the plot, passed to |
xlab, ylab |
x- and y-axis labels, passed to |
xlim, ylim |
x- and y-limits for the plot. |
at.xax, at.yax |
Locations for x- and yaxis tick marks, passed to |
aspect |
The aspect ratio for the plot, passed to |
col.contours, lty.contours, lwd.contours |
Colour, line type and line width for contour lines. |
label.contours |
Logical, controlling whether countour lines are labelled with approximate probabilities. |
format.clab |
format string for contour labels; passed to |
cex |
Expansion factor for plotted symbols. |
cex.label |
Expansion factor for point labels. |
pos, adj |
Specifies position/adjustment of point labels. Passed to |
pos.clab |
Specification for location of contour labels. Options are '"top"', '"topright"', '"right"',
'"bottomright"', '"bottom"', '"bottomleft"', '"left"', '"topleft"'. A vector can be provided
to give multiple labels. Contour labels for |
col.clab |
Colour for contour labels. |
cex.axis |
Expansion factor for axis labels. |
las |
Axis label orientation, passed to |
pch, col, bg |
Graphical parameters passed to |
... |
Other parameters passed to plotting functions. Currently unused. |
A Duewer plot is a plot of dispersion against location. Classically, this has been applied to
multiple observations from laboratories. Locations x
are mean results of the form
(x-mu)/s
and and dispersions s
are the associated sd. The principle has also
been applied to multiple results for different measurands per laboratory, by calculating
z-scores for all observations relative to the assigned value and dispersion for each measurand
and then plotting mean and sd of the scores. More recently the plot has been used to summarise
reported values and (usually) standard uncertainties in metrology comparisons to allow
quick assessment of anomalies within data sets.
The traditional plot includes visual guides in the form of semicircular contours at multiples of (x-mu)/sigma for the x-axis and s/s0 for the y-axis, s0 being a median or other estimate of the typical standard deviation.
Contours are, by default, labelled with probabilities corresponding to quantiles of the normal distribution.
dplot
is an alias for duewer.plot
.
This function is called for its side effect, which is the production of a plot.
S Ellison s.ellison@lgc.co.uk
Duewer, D, Probably in Anal. Chem. in about 1990
axis
for axis control, points
, text
for
plotting parameters; sprintf
for contour label format.
xs.plot
for a plot of location and scale data with probabilistic
confidence regions.
1 2 3 4 5 6 7 8 9 10 | require(metRology)
data(Pb)
Pb
duewer.plot(Pb$value, Pb$u)
duewer.plot(Pb$value, Pb$u, basis="prob", df=5)
#Illustrate contour labelling
duewer.plot(Pb$value, Pb$u, pos.clab="bottom")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.