wiki page: update SASv9.cfg for Sudaan This page has been updated for Sudaan v10.0.1 http://www.sascommunity.org/wiki/Updating_SASv9.cfg_for_Sudaan Ronald J. Fehd, IT Spec Sudaan License Manager listserv admin: CDC_Sudaan HelpDesk Level 3: SAS CDC SAS site representative ... 4 Mar 2010 16:55
Annotated Graph Problem For a graph Change from Base line I need to put a number close to the bar which shows the number of days from baseline to the best response. To put them I am doing something like this. I do not like this solution at all as this is hardcoding the vales for Cpn. I tried to generalize my approach in the part2 I am ge... 4 Mar 2010 15:48
DDE to Share an Excel File Can you elaborate what do you mean by "share" an excel file? On Thu, 4 Mar 2010 12:10:52 -0500, Ernie P <aaronevans(a)HOTMAIL.COM> wrote: Hi, I've used DDE for many things but does anyone know what the DDE would look like to share your excel file? It doesn't take long to share it but I'd like to automate ... 4 Mar 2010 14:38
help in proc reg Hi all, I want to store R2 from running *proc reg* in sas table form, like we store estimates outest. what option to use for that? Similarly in *proc model*. Regards, priyanka ... 4 Mar 2010 14:38
removing Dollar sign from Tabulate Hello All , /*Generate a table for the total number of units sold over each week*/ proc tabulate data=WEEK f=dollar8.; class week Laptopmodel; var UnitsSold; table week*Laptopmodel, Unitssold; run; proc print data = Tabulate; run; I'm getting the $ sign in the 'UnitsSold' in output and... 5 Mar 2010 13:56
speed (or efficiency) of proc append and sql out union? Hi, I need to join many tables with same structure. I implemented it by proc append with a loop in macro. But my other part of the program is in sql, and I believe it would be faster if I don't invoke sql and quit it in each loop. I know "out union" can join tables, but I don't know if it is as fast as proc appen... 4 Mar 2010 14:38
DDE to Share an Excel File Hi, I've used DDE for many things but does anyone know what the DDE would look like to share your excel file? It doesn't take long to share it but I'd like to automate this coming out of SAS if possible. Thanks, EP ... 4 Mar 2010 13:29
ERROR: Read Access Violation In Task (SQL) Last week we started getting an error with a SAS program which had been working fine for many months. The code of that program is unchanged as is the format of the database table it is reading. The only thing that has changed (that I'm aware of) is that the number of rows in that table continues to grow (it is no... 4 Mar 2010 13:29
PHREG w/ strata question I've run into a question regarding how PHREG functions when using the strata statement to generate risk sets for a conditional logistic regression modeling match case control data (1:N). Each strata group originally had at least one case and one control. However after applying an exclusion criteria some of the risk... 4 Mar 2010 12:19
IF-THEN Hello All, I want to use to assign 4 variables and then obtain a PROC FREQ for the four week variables.For this , I used the code which gives me log error : data week; set sales; IF DateofSale > '01/11/2009' and DateofSale <= '07/11/2009' THEN Week = Week1; Else IF DateofSale >= '08/11/2009' and DateofS... 4 Mar 2010 13:29 |