First
|
Prev |
Next
|
Last
Pages: 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
PROC Freq - Output All Variables ODS Output Table should do it: ODS Listing Close ; ODS Output OneWayFreqs = Freqs ; Proc Freq Data = SASHELP.CLASS ; Table _ALL_ ; Run ; ODS Listing ; Proc Print Data = Freqs ; Run ; On Tue, 12 Jan 2010 15:06:01 -0500, saslearn chicago <sasswamy(a)GMAIL.COM> wrote: Thanks Art, I could o... 12 Jan 2010 20:46
Using a Colon (:) wildcard at beginning of variable lists Y'all can ignore this... once again, more refined searching of SAS-L AFTER doing my post yielded results: =20 http://www.listserv.uga.edu/cgi-bin/wa?A2=3Dind0803B&L=3Dsas-l&P=3DR14170= =20 Sorry to bother, matt =20 From: Pettis, Matthew (Legal)=20 Sent: Tuesday, January 12, 2010 2:20 PM To: SA... 12 Jan 2010 16:19
Using a Colon (:) wildcard at beginning of variable lists Hi, =20 I know that you can use a colon wildcard with a prefix in a drop statement (among others) to get a list of things with a common prefix. For example, if I have a dataset work with the columns: =20 X Y ID_A ID_B Z =20 And issue: =20 Data work; Set work; Drop ID_... 12 Jan 2010 16:19
online SmartPLS SEM workshops in February (apologies for cross-postings) =20 Eight hour, online, 'hands-on,' synchronous, interactive structural = equation modeling (SEM) workshops in February, 2010 covering basic and = intermediate techniques of partial least squares (PLS) path modeling. = Participants receive SmartPLS software, 'hands on' exercises and ... 12 Jan 2010 15:11
Comparing a value to a range to create a cut point hi ... one approach ... use the cut points to produce a format that's used later in another data step this assumes that the variable ADD_MONTHS is always numbered consecutively starting with the value for the first cut point * the changing cut points; data cut; input cp @@; datalines; 22 53 73 84 87 92 98... 11 Jan 2010 18:45
What concerns me the most about Enterprise Guide Hi SAS-Lrs, I am a novice EG programmer so this may not be true, but I think it is possible. Heavily used binary objects that are constantly updated(in place?) can become corrupted. I make very heavy use of my sasuser.profile and about every three months it appears to get damaged. I back it up and usually can... 12 Jan 2010 12:56
proc fcmp crashes Hello, I have run across the issue where a custom function would crash SAS session. Nothing get's written in the log regardless of the execution mode (Interactive or Batch). Since I have only one SAS machine can somebody please verify the behavior? I am running SAS9.2 TS Level 2M2 (64bit) on MS Sever 2003 R2 64bi... 8 Jan 2010 19:33
Fisher's exact test appropriate here? I feel Fishers Exact test is appropriate but probably not powerful enough. How about a logistic regression with extra explanatory variables such as economic-demographic group. If you can lay your hands on detailed records you might use the data mining technique of balanced sampling (50% event and 50% non event)... 11 Jan 2010 02:10
automatically reading other formats into SAS I have a folder that contains 10 files of a type other than SAS. (eg EXCEL). Now I have the code for converting every single EXCEL file into SAS using a simple macro by passing the filename as a parameter. But can I read the names of these EXCEL files without having to type them out in my code? eg if all of the fil... 11 Jan 2010 11:59
Unable to initialize the SAS Kernal The syntax of the command that you tried to schedule is wrong. Somehow it seems to think that your program name is an option. Can you run the command that you scheduled from the command prompt? On Jan 8, 4:40 pm, xtina.sh...(a)GMAIL.COM (Tina Shaw) wrote: Hi, I got the following error message in the SAS Mes... 11 Jan 2010 11:59 |