PROC FORMAT Hello I use the code below : proc tabulate data=period; class A B; var Y; table period*(B all='Subtotal') all='Total for All goods sold'*f=dollar12., all='Profits from both goods'*profit=' '*sum=' ' / rts=25; title 'Profits from each good'; title2 '(Profits in Dollars)'; RUN... 9 Mar 2010 12:19
Selecting dates in a period. Was RE: new joinee Think one problem is: it is really very unimportant how the date values are formatted, the content is always the same! What I don't understand: what is PERIOD? In your example, the PERIOD seems to be always a date in january 2010, independant from start and end!? If you need februray data, independant of the year, ... 9 Mar 2010 11:10
Selecting dates in a period. Was RE: new joinee Joinee=0D=0A=0D=0AWhile I can suspect where the problem lies, could you pos= t (to the group, not just to me) the actual code that you used=2E That woul= d help a lot=2E=0D=0A=0D=0ANat Wooding=0D=0A=0D=0AFrom: sasbond1981 sasbond= 1981 [mailto:sasbond1981(a)gmail=2Ecom]=0D=0ASent: Tuesday, March 09, 2010 9:= 14 AM=0D... 9 Mar 2010 11:10
Jim and MMMMIIIIKKKKEEEE Dear SAS-L-ers, I hope that those of you planning on attending SAS Global Forum 2010-and th= ose who are not, but are still interested in the event-are following the SA= S Global Forum Blog. In particular, pay attention to the Wednesday, March = 3rd posting: http://blogs.sas.com/sgf/index.php It contains a... 9 Mar 2010 08:55
Variables Hallo, I can't find a sloution for my following problem. With the next dataset : ID Name Number 1 Obj 1025 1 Res 158 1 Num 1458 2 Obj 587 2 Res 21 3 Obj 900 3 Num 28 i want to create the following dataset : ID Obj Res Num... 9 Mar 2010 07:49
Finding Predcied values with confidence level based on the regression model Hello , Could you please suggest me how do I obtain the estimate for a new observation if I add it in my model from the regression model that I have.Suppose that the regression equation is :- Y = a+b*A+c*B+d*C ; where Y is dependent variable of interest and A,B and C are the varaibles that are in my model.Also... 9 Mar 2010 08:55
Leading zeros using put(var,z4.) but not working Dear all, I have a very simple question. I tried to add the leading zeros before the values like: 111 112 113 I will like to have the following: 0111 0112 0113 I use the put function like data new; set old; newsic= put(sic, z4.); run; But the log gives me this information: ERROR 48-59... 9 Mar 2010 00:13
perl REGEX -- What does it mean that regexes are greedy? How can I get around it? 6.13: What does it mean that regexes are greedy? How can I get around it? Most people mean that greedy regexes match as much as they can. Technically speaking, it's actually the quantifiers ("?", "*", "+", "{}") that are greedy rather than the whole pattern; Perl prefers local greed and imme... 8 Mar 2010 22:02
modeling time series data using Generalized Linear Model in SAS On Mar 8, 1:45 pm, chenm...(a)GMAIL.COM (Ming Chen) wrote: Hi All, Has anyone have used generalized linear models to model time series data especially multivariate time series? I came upon a book on this topic. the book name is "Regression Models for Time Series Analysis" and you can find it sold on... 8 Mar 2010 22:02
how to retail value of local Macro variable ?? There are probably many ways of solving your problem. For one, couldn't you create a master local macro variable and only change it if the value of the current one isn't missing? Art ------- On Mon, 8 Mar 2010 16:08:19 -0800, SAS_learner <proccontents(a)GMAIL.COM> wrote: Hello all , #### trying to retai... 9 Mar 2010 13:29 |