First  |  Prev |  Next  |  Last
Pages: 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
What to do if anything bites.
Dear SAS-L-ers, Edward Zoel posted the following: What to do if anything bites. Check our bites treatment at <<<SNIPPEROO!>>> Edward, the only thing that bites is your posting this off-topic message on a SAS discussion listserv! All, best of luck in all your SAS endeavors! I hope that... 9 Mar 2010 16:56
RIDIT Transformation
Greetings, SAS-L'ers. =20 =20 This is not exclusively a SAS question, but I know there's a huge amount of statistical expertise in this group, so I'm hoping someone can help. Is anyone familiar with RIDIT analysis (or RIDIT transformations) and the appropriate circumstances for use? For example, is there some... 9 Mar 2010 13:29
Using PROC FCMP Functions with %SYSFUNC
P.S. - I also wrote an xSubstr macro to eliminate the need for using my xSubstr fuction via %sysfunc, but xIndexc (similar to indexc, except that it ignores quoted and parenthesized values and also handles negative start values and counts) is not so easily replaced... And of course all of this came up in some pro... 9 Mar 2010 15:47
Using PROC FCMP Functions with %SYSFUNC
Under SAS 9.2 I have several user defined functions that have been = compiled using PROC FCMP. These functions work fine when I use them in = data step code. However, when I attempt to use any of these functions = in a macro via %SYSFUNC, I get an error message that the function cannot = be found, e.g.: 116 da... 9 Mar 2010 13:29
Command that runs at DOS prompt does not run when using X command
Hi there, I was wondering if anyone has ever experienced something similar to this. When I run the following command at the DOS prompt it works fine: clip < c:\temp\init.txt ....but if I run the following line in SAS, it does not work. i.e. the contents to not get copies to the clipboard. x "clip < c:\temp\... 9 Mar 2010 13:29
Command that runs at DOS prompt does not run when using X
Are you sure you're running the X command and the DOS prompt in the same folder? Perhaps CLIP is not in a directory in the path? -Joe On Tue, Mar 9, 2010 at 11:02 AM, js8765 <js8765(a)googlemail.com> wrote: Hi there, I was wondering if anyone has ever experienced something similar to this. When I... 9 Mar 2010 16:56
SAS nlmixed for count data with random effect
Hi, I am trying to estimate a very simple model with a small twist. Counts are distributed by Poisson arrival rate, along with a normal distribution. proc nlmixed data=countdata; parms logsig 0 alpha1 1 beta1 1; eta = (alpha1 + beta1*lnW)+ e; lambda = exp(eta); model count ~ poisson(la... 9 Mar 2010 15:47
perl REGEX -- What does it mean that regexes are greedy? How
Adding the ? behind * quanitfier makes it lazy or reluctant instead of greedy. While this is a quick fix to the greedy quantifier problem it doesnt make it the best solution as it does not solve the fact that you are still requiring the regex to backtrack. Which in the example below isnt a big issue but in a larg... 9 Mar 2010 12:19
Pass existing format with multilabel Proc Format
Morning, I'm at a blank how to the following. Ironically, I believe, I've done this before but just blanking. Can someone help? I have grades KK – 05 there should be a way to pass the existing format with a character format and add another. Have: Proc format; Value $grade (multilabel) 'KK' = 'KK' ... 9 Mar 2010 12:19
Counting
HI, I have dataset as follows data have; id a 1 1 1 0 1 1 2 0 2 1 3 0 3 0 ; data want; id a count1 count0; 1 1 2 2 1 1 3 0 2 ; I want number of '0' s in field ' a' as count0 and '1' s as count1 Plz provide solution? ... 9 Mar 2010 14:38
First  |  Prev |  Next  |  Last
Pages: 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94