First
|
Prev |
Next
|
Last
Pages: 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
confidence intervals with PROC PHREG Hi Take a look at the example at the following webpage. Look at the syntax above /* Table 4.5 */. The confidence limits are specified using the risklimits option. hope that helps. http://www.ats.ucla.edu/stat/SAS/examples/asa2/asa2_sas_ch4.htm On Fri, Jan 15, 2010 at 4:51 PM, Christine Peloquin < christinepe... 2 Feb 2010 15:33
Problem in reading a password protected Excel File: Could not I just encountered this situation while trying to read a workbook created e= lsewhere=2E I can open the book using Excel and fill in data (it is a appli= cation created by an agency for use in reporting) but when I try to read th= e data that I have entered, I get the message "Could not decrypt File"=2E S= AS Suppo... 15 Jan 2010 14:56
assign a unique random integer to each unique id I believe that will generally work, but the size of your sample determines if it's likely to work 100%. You won't get 100% guarantee that it will be unique, because the period of the ranuni function is much larger than that; so periodically if reduced to a period of only 1e7 it will duplicate. 1e7 should be enoug... 18 Jan 2010 15:24
assign a unique random integer to each unique id Hi, =A0 I was wondering if anybody in this list could advise how I can assign a uni= que random integer to each unique id. I have written the following code but= it does not allow me to get the unique random intergers. The 10000000 is p= roportional to the size of the data set. Do I miss anything in the codes? P=... 15 Jan 2010 12:42
SAS Calculates the number of days between 31DEC9999 and 01JAN1960 On Jan 15, 6:30 am, aziegen...(a)ANAXIMA.COM (Allen Ziegenfus) wrote: Hey everyone, Does anyone know why SAS calculates the number of days between 31DEC9999 and 01JAN1960 differently than Excel / SQL Server, for example? SAS reports this value as 2936547 while Excel reports it as 2936549. I wanted to... 22 Jan 2010 06:11
Compiled Secure Macro on Unix SAS 9.2 Hi guys, I have been running compiled macro on windows SAS without any issues. However, when I tried to access my compiled macro on Unix SAS, it did not work. Here is my code for unix sas OPTIONS MSTORED SASMSTORE=test; libname test '/home/sas_stuff/'; %macro analysis (var1, var2, var3) / store secure ;... 14 Jan 2010 23:35
Moving Character from date Hi all, I have 100 Excel spreadsheets where the last letter of the patient name is first character of the date field. I'm trying to import all spreadsheets in SAS and I'm clueless to where to start. data have; input lname $ first $ date; datalines; kim test 11/22/2008 test ki m12/28/2009 testy sa s3/15/200... 14 Jan 2010 20:17
Sum two values in a column One way to go about it is to use GROUP BY in SQL. It cheats with the 'remerge' trick to get your rows back instead of only returning summary rows. data test; input month cost item; datalines; 1 51 1 1 35 2 1 21 3 1 16 1 1 48 4 1 35 5 2 76 2 2 37 1 2 46 3 2 24 2 2 28 4 2 67 5 2 49 3 ;;;; run; pro... 14 Jan 2010 19:10
Conjoint analysis of chemotherapy induced nausea and vomiting Paul, Have you looked at the 1165 page tome by Warren Kuhfeld at SI (MR-2009) Marketing Research Methods in SAS (Experimental Design, Choice, Conjoint, and Graphical Techniques) January 1, 2009 SAS 9.2 Edition Primary tool is Proc Transreg (part of SAS Stat) http://support.sas.com/techsup/technote/mr2009.p... 18 Jan 2010 10:51
Multivariate Random Regression using Proc Mixed ? --- On Tue, 1/12/10, John Stinchcombe <john.stinchcombe(a)UTORONTO.CA> wrote: From: John Stinchcombe <john.stinchcombe(a)UTORONTO.CA> Subject: Multivariate Random Regression using Proc Mixed ? To: SAS-L(a)LISTSERV.UGA.EDU Date: Tuesday, January 12, 2010, 10:15 AM Hi All- I have a question for the group... 14 Jan 2010 18:02 |