mfx_me(tonymisc)
mfx_me()所属R语言包:tonymisc
Marginal Effects
边际效应
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function coerces glm objects to type mfx.
此功能胁迫输入MFX GLM对象。
用法----------Usage----------
mfx_me(x)
参数----------Arguments----------
参数:x
A glm object using binomial link function probit or logit. The getSummary.mfx method doesn't know what to do with other types of glm objects.
使用的二项式链接功能的概率或罗吉特的glm对象。不知道做什么与GLM对象的其他类型的getSummary.mfx方法。
值----------Value----------
Returns an object of type "mfx."
返回一个对象类型“MFX”。
(作者)----------Author(s)----------
J. Anthony Cookson
参见----------See Also----------
getSummary.mfx mtable
getSummary.mfxmtable
实例----------Examples----------
library(tonymisc)
library(Ecdat)
data(Yogurt)
yop <- glm(I(choice=="yoplait")~price.yoplait+feat.yoplait, family=binomial, data=Yogurt)
yo_me <- mfx_me(yop) ## Create "mfx" object to trick mtable()[#创建“MFX”对象到招mtable()]
mtable(yop, yo_me) ## produces a table with nice output[#产生一个不错的输出的表]
toLatex(mtable(yop, yo_me)) ## Produces LaTeX code[#产生LaTeX代码]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|