LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (August 2003, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Fri, 1 Aug 2003 09:35:49 -0400
Reply-To:     diskin.dennis@KENDLE.COM
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         diskin.dennis@KENDLE.COM
Subject:      Re: Length of CLASS variable TRT_SEQ truncated to 16.
Comments: To: Angela <angela.remy@OMEGA-MEDIATION.COM>
Content-Type: text/plain; charset="us-ascii"

Angela,

First, I have to doubt your statement that the formats are less than 16 in length. \ The proc should work fine as long as none of the formatted values are duplicates within the first 16 characters. If you just need to get rid of the warning, uUnless you need the formatted values in your output, you can turn them off by including: FORMAT TRT TRT_SEQ;

HTH, Dennis Diskin

Angela <angela.remy@OMEGA-MEDIATION.COM> Sent by: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> 08/01/2003 08:57 AM Please respond to Angela

To: SAS-L@LISTSERV.UGA.EDU cc: Subject: Length of CLASS variable TRT_SEQ truncated to 16.

Hi, I have a little problem concerning a WARNING in the log.

My code is:

proc mixed data=s.lung_c(where=(itt and sched=98 )) method=reml; class period trt_seq age_c trt; model dfev1 = trt period age_c trt_seq ; repeated trt/ type=cs subject=pno; lsmeans /cl pdiff; run;

Unfortunately the log window give me the WARNINGS 312 WARNING: Length of CLASS variable TRT_SEQ truncated to 16. 312 WARNING: Length of CLASS variable TRT truncated to 16.

although all formats on numeric TRT_SEQ and TRT are shorter than 16 characters. I just want to get rid of this WARNINGs if possible. Does anybody know how I can achieve this????

Thanks for your help

Angela


Back to: Top of message | Previous page | Main SAS-L page