SiegelsEx(robustbase)
SiegelsEx()所属R语言包:robustbase
Siegel's Exact Fit Example Data
西格尔的严格匹配示例数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A small counterexample data set devised by Andrew Siegel. Six (out of nine) data points lie on the line y = 0 such that some robust regression estimators exhibit the “exact fit” property.
一个小的反例数据集由安德鲁·西格尔设计的。六(9)数据点位于上线y = 0稳健回归估计,一些具有“精确配合”属性。
用法----------Usage----------
data(SiegelsEx)
格式----------Format----------
A data frame with 9 observations on the following 2 variables.
与9观察以下2个变量的数据框。
x a numeric vector
x一个数值向量
y a numeric vector
y一个数值向量
源----------Source----------
Emerson and Hoaglin (1983, p.139)
艾默生和Hoaglin的(1983,第139页)
参考文献----------References----------
Robust Regression and Outlier Detection Wiley, p.60–61
实例----------Examples----------
data(SiegelsEx)
plot(SiegelsEx, main = "Siegel's example for 'exact fit'")
abline( lm(y ~ x, data = SiegelsEx))
abline(MASS::lqs(y ~ x, data = SiegelsEx, method = "lms"), col = 2)
legend("topright", leg = c("lm", "LMS"), col=1:2, lwd=1, inset = 1/20)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|