Demand {SASmixed} | R Documentation |
The Demand
data frame has 77 rows and 8 columns of data on
per-capita demand deposits by state and year.
This data frame contains the following columns:
WA
< FL
< CA
< TX
< IL
< DC
< NY
1949
< ...{} < 1959
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).
Feige, E. L. (1964), The Demand for Liquid Assets: A Temporal Cross-Sectional Analysis., Prentice Hall.
str(Demand) if (require("lme4", quietly = TRUE, character = TRUE)) { ## compare to output 3.13, p. 132 summary(fm1Demand <- lmer(log(d) ~ log(y) + log(rd) + log(rt) + log(rs) + (1|State) + (1|Year), Demand)) }