मैंने बनाया दो चर की माप एक्स और वाई । वे दोनों अनिश्चितताओं को जानते हैं σ एक्स और σ y उन लोगों के साथ जुड़ा हुआ है। मैं x और y के बीच संबंध खोजना चाहता हूं । मैं यह कैसे कर सकता हूं?
संपादित करें : प्रत्येक एक अलग है σ एक्स , मैं इसके साथ जुड़े, और के साथ एक ही y मैं ।
Reproducible R उदाहरण:
## pick some real x and y values
true_x <- 1:100
true_y <- 2*true_x+1
## pick the uncertainty on them
sigma_x <- runif(length(true_x), 1, 10) # 10
sigma_y <- runif(length(true_y), 1, 15) # 15
## perturb both x and y with noise
noisy_x <- rnorm(length(true_x), true_x, sigma_x)
noisy_y <- rnorm(length(true_y), true_y, sigma_y)
## make a plot
plot(NA, xlab="x", ylab="y",
xlim=range(noisy_x-sigma_x, noisy_x+sigma_x),
ylim=range(noisy_y-sigma_y, noisy_y+sigma_y))
arrows(noisy_x, noisy_y-sigma_y,
noisy_x, noisy_y+sigma_y,
length=0, angle=90, code=3, col="darkgray")
arrows(noisy_x-sigma_x, noisy_y,
noisy_x+sigma_x, noisy_y,
length=0, angle=90, code=3, col="darkgray")
points(noisy_y ~ noisy_x)
## fit a line
mdl <- lm(noisy_y ~ noisy_x)
abline(mdl)
## show confidence interval around line
newXs <- seq(-100, 200, 1)
prd <- predict(mdl, newdata=data.frame(noisy_x=newXs),
interval=c('confidence'), level=0.99, type='response')
lines(newXs, prd[,2], col='black', lty=3)
lines(newXs, prd[,3], col='black', lty=3)
इस उदाहरण के साथ समस्या यह है कि मुझे लगता है कि यह मानता है कि में अनिश्चितताएं नहीं हैं । मैं इसे कैसे ठीक करूं?
Deming
आर पैकेज मेथकॉम में फ़ंक्शन ।
lm