First
|
Prev |
Next
|
Last
Pages: 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
Testing Trends when Equal Variances are not Assumed proc glm contrasts give me tests that assume equal variances. if i enter the same coefficients into spss, i get two sets of tests (equal variances assumed and not). can i get these tests from glm? thanks ... 26 Feb 2010 15:20
Basic Bootstrap Macro You changed 2 places in the original code, which caused trouble: set new POINT = choice NOBS = 10; The 10 has to be n, a variable used later. PROC REG DATA = analysis NOPRINT outest= outests; (KEEP= intercept x ); A ';' after outests break the line, which make it two separated statement, and... 26 Feb 2010 17:34
How to - Hex IP address to dotted decimal <snip> Yes, use scan,input,put can do it: 1 data _null_; 2 iphx='0xC0.0x00.0x02.0xEB'; 3 ipdec1=put(input(scan(scan(iphx,1,'.'),2,'x'),hex.),best.); </snip> My mistake and thanks for the reply. I should have stated that the number is hex with no dots, e.g. x'99aa2233'. It is an IBM format that they ... 26 Feb 2010 16:27
LST produced instead of RTF I have a listing which is supposed to generate an RTF but it generates a LST file instead and creates an empty RTF file. I am doing something like this filename filetmp temp; ods listing close; ods rtf file=filetmp style=styles.&style; proc report ......... run; ods rtf close; ods listing; LOG... 26 Feb 2010 14:12
Has anyone noticed a Proc Document glitch with gsegs? Forgot to mention: SAS 9.2 (TS2M0) on Win XP. Sorry. ... 26 Feb 2010 11:54
Has anyone noticed a Proc Document glitch with gsegs? Hi, All. I've searched the archives (and sas support) but haven't seen this reported, so I'm wondering if it's me. Has anyone experienced Proc Document replaying the wrong object when replaying objects from Proc Gplot? For example, if I run this: Proc Gplot data = one uniform; by study; plot yvar * (xvar... 26 Feb 2010 11:54
SURVEYREG Hi guys, I'm using PROC SURVEYREG with the cluster option, get the out of memory error. I sorta understand why, model has a fixed effect with several levels. But here's the kicker: I use the SAME MODEL on a LARGER sample of data (about 25% more obs, where fixed effect also has more levels than before) and she ... 25 Feb 2010 23:48
How to specify the ESTIMATE statement in PROC MIXED --- On Thu, 2/25/10, Chung Y. Li <li.chungying(a)GMAIL.COM> wrote: From: Chung Y. Li <li.chungying(a)GMAIL.COM> Subject: How to specify the ESTIMATE statement in PROC MIXED To: SAS-L(a)LISTSERV.UGA.EDU Date: Thursday, February 25, 2010, 4:34 PM Hello, I am fitting a PROC MIXED repeated measures model, and... 26 Feb 2010 15:20
Import Error Hello all, I have some rather large database that I've had to import manually since they don't have delimiters or column headers and I've been successful until I got to this database. I've included the log of my code below. I'm not sure how to fix a "lost card" and hows that affecting my output. 2 /*%imp... 25 Feb 2010 22:42
Proc import with mutiple datatype for one column I have a macro that reads the filenames from a director (all Excel files) and then loops through, using SAS/Access to PC file formats to read the Excel file, and then after the file is read into a SAS dataset, I use proc sql to insert them into one table. Everything works fine, however, some of the datatypes are ... 25 Feb 2010 17:05 |