Incorporating images in output Hello, I have a list of observations each which has an image (e.g., the picture of the person). I have a variable in the sasdata that saves the hyperlink to the picture. Is there a good way to select the person based on their information and printout the ones selected along with their pictures? I am not very fam... 18 Mar 2010 14:19
how to modify neg binomial? Greetings, I am formulating a model for the rate at which certain options are exercised. These options can be exercised on the first of the option year, up to a specified time limit. E.g., if the option is effective on Jan 5, 2011 with a 10 year limit, then it can be exercised on Jan 5, 2012, Jan 5, 2013, ... ja... 18 Mar 2010 11:40
Finding ERRORs in SASLOG When I want to search for ERRORs in my SASLOG, I can of course do a search for the test string ERROR in the SASLOG, however sometimes this turns up _ERROR_, which really isn't an error, it is written to the LOG by a data step (for example, if you divide by zero). In this instance, and many similar instances, I'm no... 19 Mar 2010 14:21
Put with @ column pointer May be something like in this example (using +1): data _null_; input nv1 cv1 $ nv2 cv2 $; put @1 nv1 z8. +1 cv1 nv2 date9. +1 cv2; datalines; 23456 abc 12 x 23 abcdefg 12 x 2 abc 12345 x ; run; ... 18 Mar 2010 05:56
Problem with char variable Hi all, I have a char variable with length 32, format and informat $32. Essentially, I am trying to create a flag based on the value of this variable. However, whilst I can clearly see that there are values which should be flagged, SAS can't seem to pick them up. I have used functions like strip and compres... 18 Mar 2010 05:56
Date Time Informat Query Do we have an undocumented, perhaps, informat that would take a string that looks like the one below and covert it to a numeric SAS datetime variable value? Thanks is advance! The string is: Mar 17, 2010 12:47 PM PDT Andrew Karp Sierra Information Services http://www.sierrainformation.com ... 18 Mar 2010 12:58
is this possible with proc kde suppose there is a dataset like this where data temp; input type goodbad; cards; 1 1 2 0 1 0 2 1 ;;; what if also a time element existed, for example hour from 8 to 24, could proc kde present this data in a contour plot ? of course the final dataset may contain thousands of records ... 17 Mar 2010 23:24
Can i merge Hi, I have two datasets one containing visits details and one holding asset details and i would like to update the visit details dataset with asset that was at the property on the date of the visit: Visit dataset example ref visit type Visit Date 123 install 01/04/2009 asset datase... 19 Mar 2010 05:58
Data step Question All: I am supposed to create a variable BSLN(Baseline) based on the following conditions ,if days < 0 and if lbtest = A or B then BSLN = Average of all values(within lbtest) collected before day 0 .. and for lb test = C , the baseline should be the value which is closet to day 0 Any suggestions are greatly ... 18 Mar 2010 12:58
SAS Macro - Is there a way to use an if statement to set two variables? Hi, I'm new to SAS and would like to write a macro that loops through a number of times and can set two variables based on an if statement. I am wondering if this is possible, or if I have to use two if statements, one for each variable. Thanks in advance for any suggestions. For example, %MACRO CreateT... 18 Mar 2010 14:19 |