logit(secr)
logit()所属R语言包:secr
Logit Transformation
Logit模型转换
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Transform real values to the logit scale, and the inverse.
logit的尺度变换的实际值,以及逆。
用法----------Usage----------
logit(x)
invlogit(y)
参数----------Arguments----------
参数:x
vector of numeric values in (0,1) (possibly a probability)
的矢量(0,1)中的数字值(可能是一个概率)
参数:y
vector of numeric values
矢量的数值
Details
详细信息----------Details----------
The logit transformation is defined as logit(x) = log(x/(1--x)) for x in (0,1).
的Logit变换定义为logit(x) = log(x/(1--x))x in (0,1)。
值----------Value----------
Numeric value on requested scale.
规模上要求的数值。
注意----------Note----------
logit is equivalent to qlogis, and invlogit is equivalent to plogis (both R functions in the stats package). logit and invlogit are used in secr because they are slightly more robust to bad input, and their names are more memorable!
logit是相当于qlogis和invlogit相当于plogis(包括R功能stats包)。 logit和invlogitsecr更强大的,因为他们是坏的输入,他们的名字是更令人难忘!
实例----------Examples----------
logit(0.5)
invlogit(logit(0.2))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|