Demand(SASmixed)
Demand()所属R语言包:SASmixed
Per-capita demand deposits by state and year
每年由国家和人均活期存款
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The Demand data frame has 77 rows and 8 columns of data on per-capita demand deposits by state and year.
Demand数据框有77行8列的数据状态和年人均活期存款。
格式----------Format----------
This data frame contains the following columns:
该数据框包含以下几列:
State an ordered factor with levels WA < FL < CA < TX < IL < DC < NY
国家一个有序的因素与水平WAFLCATXILDCNY
Year an ordered factor with levels 1949 < ... < 1959
年有序因素与水平1949<... <1959
d a numeric vector of per-capita demand deposits
d数字矢量人均活期存款
y a numeric vector of permanent per-capita personal income
雅永久的人均个人收入数字向量
rd a numeric vector of service charges on demand deposits
RD一个数值向量的服务费,活期存款
rt a numeric vector of interest rates on time deposits
RT一个数值向量定期存款利率
rs a numeric vector of interest rates on savings and loan association shares.
RS的数字矢量利率储蓄和贷款协会股份。
源----------Source----------
Littel, R. C., Milliken, G. A., Stroup, W. W., and Wolfinger, R. D. (1996), SAS System for Mixed Models, SAS Institute (Data Set 1.2.4).
LITTEL,RC,美利肯,GA,斯特普,WW,Wolfinger,RD(1996年),SAS系统的混合模型,SAS研究所(数据集1.2.4)。
Feige, E. L. (1964), The Demand for Liquid Assets: A Temporal Cross-Sectional Analysis., Prentice Hall.
飞鸽,EL(1964年),流动资产的需求:时间的横截面分析,Prentice Hall出版社。
实例----------Examples----------
str(Demand)
if (require("lme4", quietly = TRUE, character = TRUE)) {
## compare to output 3.13, p. 132[#比较输出3.13检测号码。 132]
summary(fm1Demand <-
lmer(log(d) ~ log(y) + log(rd) + log(rt) + log(rs) + (1|State) + (1|Year),
Demand))
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|