Deming: Fit Deming regression.

View source: R/Deming.R

DemingR Documentation

Fit Deming regression.

Description

Deming regression fit. Assume x and y variances are the same. Slightly modified from MethComp R package.

Usage

Deming(x, y, vr = sdr^2, sdr = sqrt(vr), boot = TRUE, keep.boot = FALSE, 
    alpha = 0.05) 

Arguments

x

tbd

y

tbdy

vr

tbdvr

sdr

tbdsdr

boot

tbdboot

keep.boot

tbdkeep.boot

alpha

tbdalpha

Examples


## Not run: 
set.seed(1)
x=rnorm(100,0,1)
y=x+rnorm(100,0,.5)
x=x+rnorm(100,0,.5)
fit=Deming(x,y, boot=TRUE)
summary(fit)
plot(x,y)
abline(fit)
# compare with lm fit
fit.1=lm(y~x, data.frame(x,y))
summary(fit.1)
abline(fit.1, col=2)

## End(Not run)

kyotil documentation built on Nov. 28, 2023, 1:09 a.m.