| Date: | Mon, 17 Jul 2006 16:37:15 -0700 |
| Reply-To: | "Dennis G. Fisher" <dfisher@CSULB.EDU> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | "Dennis G. Fisher" <dfisher@CSULB.EDU> |
| Organization: | California State University, Long Beach |
| Subject: | Proc Glimmix? |
| Content-Type: | text/plain; charset=ISO-8859-1; format=flowed |
I am trying to convert the following GLIMMIX macro code into Proc
Glimmix and am having a lot of problems. What am I doing wrong and what
is the solution? TIA
%glimmix (data=Gnew,
stmts=%str(
class userid assign time;
model shared = assign time assign*time;
repeated time / type = cs subject=userid;
),error = binomial,
link=logit);
My obviously wrong attempt
Proc Glimmix data = Gnew;
Class userid assign time;
Model shared = assign time assign*time / error = binomial link = logit ;
Random time / type = cs subject = userid ;
I hope someone knows enough about Proc Glimmix to know the answer.
Thanks much.
Dennis Fisher
--
Dennis G. Fisher, Ph.D.
Professor and Director
Center for Behavioral Research and Services
California State University, Long Beach
1090 Atlantic Avenue
Long Beach, California 90813
(562) 495-2330 x121
fax (562) 983-1421
|