monthglm(season)
monthglm()所属R语言包:season
Fit a GLM with month
适合一个GLM月
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Fit a generalized linear model with a categorical
拟合广义线性模型与分类
用法----------Usage----------
monthglm(formula, data, family=gaussian(), refmonth=1,
monthvar='month',offsetmonth=FALSE, offsetpop=NULL)
## S3 method for class 'monthglm'
print(x, ...)
参数----------Arguments----------
参数:formula
regression model formula, e.g., y~x1+x2, (do not add month to the regression equation, it will be added automatically).
回归模型公式,例如,y~x1+x2,(不加一个月的回归方程,它会被自动添加)。
参数:data
a data frame.
一个数据框。
参数:family
a description of the error distribution and link function to be used in the model (default=gaussian()). (See family for details of family functions.).
的误差分布和链接功能,可以在模型中使用的描述(默认值=gaussian())。 (见family家庭功能的详细信息。)
参数:refmonth
reference month, must be between 1 and 12 (default=1 for January).
参考月份,必须是1到12之间(默认值= 1月1日)。
参数:monthvar
name of the month variable which is either an interger (1 to 12) or a character or factor ("Jan" to "Dec" or "January" to "December") (default='month').
月的变量的名称,这是一个整数(1到12)或一个字符或因子(Jan的“月”或“一月”到“12月”)(缺省值=“月”)。
参数:offsetmonth
include an offset to account for the uneven number of days in the month (TRUE/FALSE). Should be used for monthly counts (with family=poisson()).
包括一个偏移量的不均匀月份的天数(TRUE / FALSE)。应使用的月数(用family=poisson())。
参数:offsetpop
include an offset for the population (optional), this should be a variable in the data frame. Do not log-transform the offset as the log-transform is applied by the function.
包括一个偏移量的人口(可选),这应该是一个数据框中的变量。不要登录变换偏移量为对数变换的应用的功能。
参数:x
Object of class monthglm
对象的类monthglm
参数:...
further arguments passed to or from other methods.
进一步的参数传递给其他方法。
Details
详细信息----------Details----------
Month is fitted as a categorical variable as part of a generalized linear model. Other independent variables can be added to the right-hand side of formula.
月是安装作为分类变量的广义线性模型的一部分。其他独立的变量可以被添加到右手侧的formula。
This model is useful for examining non-sinusoidal seasonal patterns. For sinusoidal seasonal patterns see cosinor.
研究非正弦的季节性模式,这种模式是很有用的。对于正弦季节性模式看cosinor。
The data frame should contain the integer months and the year as a 4 digit number. These are used to calculate the number of days in each month accounting for leap years.
数据框包含一个4位数字的整数个月,一年。这些被用来计算在每月会计闰年的天数。
值----------Value----------
参数:call
the original call to the monthglm function.
的原始呼叫的monthglm函数。
参数:fit
GLM model.
GLM模型。
参数:fitted
fitted values.
拟合值。
参数:residuals
residuals.
残留物。
参数:out
details on the monthly estimates.
每月估计的详细信息。
(作者)----------Author(s)----------
Adrian Barnett <a href="mailto:a.barnett<at>qut.edu.au">a.barnett<at>qut.edu.au</a>
参考文献----------References----------
<h3>See Also</h3>
实例----------Examples----------
data(CVD)
mmodel = monthglm(formula=cvd~1 ,data=CVD, family=poisson(),
offsetpop=pop/100000, offsetmonth=TRUE)
summary(mmodel)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|