MD.plot: Display the CBLS regression, or univariate tolerance...

Description Usage Arguments Details Value Note Author(s) References See Also Examples

View source: R/MD.plot.R

Description

Display the CBLS regression in a (M,D) plot with or without hyperbolic confidence and/or predictive intervals, and an acceptance interval. Alternatively, univariate tolerance intervals which are bounded by two horizontal lines can be plotted.

Usage

1
2
3
4
5
6
MD.plot(results = NULL, xname = "X", yname = "Y", antilog = NULL,
        accept.int = 0, accept.int.perc = FALSE, accept.int.threshold = NULL,
        include.int = TRUE, graph.int = c("CB", "PI"), graph.horiz.int = c("bTI", "bgTI"),
        col.CBLS = 1, col.CI = 2, col.CB = 3, col.PI = 4, col.GI = 5, col.bTI = 3,
        col.bgTI = 4, lty.CBLS = 1, lty.CI = 1, lty.CB = 1, lty.PI = 1, lty.GI = 1,
        lty.bTI = 1, lty.bgTI = 1, ...)

Arguments

results

a CBLS class object (obtained with the BLS function) or a MD.horiz.lines class object (obtained with the MD.horiz.lines function).

xname

a character string for the name of the X device.

yname

a character string for the name of the Y device.

antilog

a character string or a numeric value. This argument displays the CBLS or MD.horiz.lines results on the initial scales in the (M,D) plot if a logarithmic transformation was used prior to the CBLS or MD.horiz.lines functions. Options available are: 10 or "e".

accept.int

a numeric vector (length equal 1 or 2) for the value of Δ: |Y-X|<Δ to assess whether two devices (X and Y) are equivalent or not. Two values of Δ can be entered to take into account the case where the equivalence threshold changes along the M axis.

accept.int.perc

a logical variable (TRUE or FALSE) whether Δ needs to be interpreted in percentage: Y = X ± Δ%.

accept.int.threshold

a numeric value for the M threshold where the value of Δ changes if two Δ values are used in accept.int.

include.int

a logical variable (TRUE or FALSE) whether the hyperbolic intervals should lie entirely in the plot.

graph.int

a character vector for the hyperbolic curves to be displayed on the graph. Options are: "CI" (Confidence Intervals),"CB" (Confidence Bands),"PI" (Predictive Intervals),"GI" (Generalised Intervals).

graph.horiz.int

if a MD.horiz.lines object is used, a character vector for the univariate tolerance intervals to be displayed on the graph. Options are: "bTI" (beta expectation tolerance interval or tolerance interval type I) and/or "bgTI" (beta gamma content tolerance interval or tolerance interval type II).

col.CBLS

a character string or a numeric variable for the colour of the CBLS regression line.

col.CI

a character string or a numeric variable for the colour of the confidence intervals.

col.CB

a character string or a numeric variable for the colour of the confidence bands.

col.PI

a character string or a numeric variable for the colour of the predictive intervals.

col.GI

a character string or a numeric variable for the colour of the generalized intervals.

col.bTI

a character string or a numeric variable for the colour of the beta expectation tolerance interval.

col.bgTI

a character string or a numeric variable for the colour of the beta gamma content tolerance interval.

lty.CBLS

a numeric variable for the type of line of the CBLS regression line.

lty.CI

a numeric variable for the type of line for the confidence intervals.

lty.CB

a numeric variable for the type of line for the confidence bands.

lty.PI

a numeric variable for the type of line for the predictive intervals.

lty.GI

a numeric variable for the type of line for the generalized intervals.

lty.bTI

a numeric variable for the type of line for the beta expectation tolerance interval.

lty.bgTI

a numeric variable for the type of line for the beta gamma content tolerance interval.

...

the common arguments from 'plot' or 'par' that may be used additionaly, such as xlim, ylim, xlab, ylab.

Details

The results argument is mandatory. The value of Δ (accept.int) is converted to percentage if antilog is used in a (M,D) plot to define 2 asymetric bounds (1- Δ/100, (100/(100-Δ)).

Value

An (M,D) plot in a new window.

Note

The limits of the axes and their labels are set automatically by the function. To compare different plots with fixed limits, use xlim and ylim. To write customized labels, use xlab and ylab.

Author(s)

Bernard G FRANCQ

References

Francq BG, Govaerts BB. How to regress and predict in a Bland-Altman plot? Review and contribution based on tolerance intervals and correlated-errors-in-variables models. Statistics in Medicine, 2016; 35:2328-2358.
Francq BG, Govaerts BB. Hyperbolic confidence bands of errors-in-variables regression lines applied to method comparison studies. Journal de la Societe Francaise de Statistique 2014; 155(1):23-45.

See Also

XY.plot

Examples

1
2
3
4
5
6
7
8
9
library(BivRegBLS)
data(SBP)
# Estimate the CBLS regression on replicated data
res.CBLS=CBLS(data=SBP,xcol=c("J1","J2","J3"),ycol=8:10)
# Plot the results in a (M,D) plot with an acceptance interval
MD.plot(results=res.CBLS,xname="J",yname="S",accept.int=10,accept.int.perc=FALSE)
MD.plot(results=res.CBLS,xname="J",yname="S",accept.int=10,accept.int.perc=TRUE)
MD.plot(results=res.CBLS,xname="J",yname="S",accept.int=c(10,15),
        accept.int.perc=FALSE,accept.int.threshold=150)

BivRegBLS documentation built on Oct. 11, 2019, 1:05 a.m.