找回密码
 注册
查看: 408|回复: 0

R语言 robustHD包 coef.sparseLTS()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-9-27 22:22:14 | 显示全部楼层 |阅读模式
coef.sparseLTS(robustHD)
coef.sparseLTS()所属R语言包:robustHD

                                        Extract coefficients from sparse LTS regression models
                                         从稀疏LTS回归模型中提取系数

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

Extract coefficients from sparse least trimmed squares regression models.
提取至少修剪稀疏最小二乘回归模型的系数。


用法----------Usage----------


  ## S3 method for class 'sparseLTS'
coef(object,
    fit = c("reweighted", "raw", "both"), zeros = TRUE,
    ...)

  ## S3 method for class 'sparseLTSGrid'
coef(object, s,
    fit = c("reweighted", "raw", "both"), zeros = TRUE,
    ...)



参数----------Arguments----------

参数:object
the model fit from which to extract coefficients.
从中提取系数模型拟合。


参数:s
an integer vector giving the indices of the models for which to extract coefficients.  If fit is "both", this can be a list with two components, with the first component giving the indices of the reweighted fits and the second the indices of the raw fits.  The default is to use the optimal model for each of the requested estimators.  Note that the optimal models may not correspond to the same value of the penalty parameter for the reweighted and the raw estimator.
给一个整数向量的模型中提取系数的指标。 fit如果是"both",这可以是一个表两部分组成,第一部分给指数的重新加权拟合和第二个指标的原始适合。在默认情况下是使用最优化模型,为每个请求的估计。请注意,优化模型可能不符合相同的刑罚为重加权参数和原始估计值。


参数:fit
a character string specifying which coefficients to extract. Possible values are "reweighted" (the default) for the coefficients from the reweighted estimator, "raw" for the coefficients from the raw estimator, or "both" for the coefficients from both estimators.
一个字符串指定的系数提取。可能的值是"reweighted"(默认值)的再加权估计的系数,"raw"的系数从原材料的估计,或"both"两个估计的系数。


参数:zeros
a logical indicating whether to keep zero coefficients (TRUE, the default) or to drop them (FALSE).
一个逻辑指示是否保持零系数(TRUE,默认值)或删除它们(FALSE)。


参数:...
currently ignored.
目前被忽略。


值----------Value----------

If coefficients for only one model are requested, they are returned in the form of a numeric vector.
如果只有一个模型的系数被请求时,它们在一个数值向量的形式返回。

Otherwise a numeric matrix is returned in which each column contains the coefficients of the corresponding model.
否则返回数值矩阵,其中每个列中包含的相应的模型的系数。


(作者)----------Author(s)----------



Andreas Alfons




参见----------See Also----------

coef, sparseLTS, sparseLTSGrid
coef,sparseLTS,sparseLTSGrid


实例----------Examples----------


## generate data[#生成数据]
# example is not high-dimensional to keep computation time low[例如不高维的计算时间保持低]
library("mvtnorm")
set.seed(1234)  # for reproducibility[可重复性]
n <- 100  # number of observations[的观测数]
p <- 25   # number of variables[的变量数目]
beta <- rep.int(c(1, 0), c(5, p-5))  # coefficients[系数]
sigma <- 0.5      # controls signal-to-noise ratio[控制的信号 - 噪声比]
epsilon <- 0.1    # contamination level[污染水平]
Sigma <- 0.5^t(sapply(1:p, function(i, j) abs(i-j), 1:p))
x &lt;- rmvnorm(n, sigma=Sigma)    # predictor matrix[预测矩阵]
e &lt;- rnorm(n)                   # error terms[误差项]
i &lt;- 1:ceiling(epsilon*n)       # observations to be contaminated[受到污染的意见]
e[i] &lt;- e[i] + 5                # vertical outliers[垂直离群]
y &lt;- c(x %*% beta + sigma * e)  # response[响应]
x[i,] &lt;- x[i,] + 5              # bad leverage points[坏的平衡点]

## sparse LTS[#稀疏LTS]
# fit model[拟合模型]
fit <- sparseLTS(x, y, lambda = 0.05, mode = "fraction")
# extract coefficients[提取系数]
coef(fit, zeros = FALSE)
coef(fit, fit = "both", zeros = FALSE)

## sparse LTS over a grid of values for lambda[#稀疏LTS为lambda值一格的]
# fit model[拟合模型]
frac <- seq(0.25, 0.05, by = -0.05)
fitGrid <- sparseLTSGrid(x, y, lambda = frac, mode = "fraction")
# extract coefficients[提取系数]
coef(fitGrid, zeros = FALSE)
coef(fitGrid, fit = "both", zeros = FALSE)
coef(fitGrid, s = NULL, zeros = FALSE)
coef(fitGrid, fit = "both", s = NULL, zeros = FALSE)

转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2024-11-25 10:04 , Processed in 0.022356 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表