search for: ln_y

Displaying 1 result from an estimated 1 matches for "ln_y".

Did you mean: ln_s
2010 Jul 16
0
Effects library LSM decimal place errors
...og(y+.01)~covar+var1:var3+var2:var3+var1+var2+var3,data=mydat,weights=w) mod<-effect("var1",aov2) cbind(mod$fit, mod$se) R gives the following?values for var1: ??? LSM???????????? SE ?-4.080362 0.06692946 ?-4.221714 0.10233130 The same problem gives the following values in SAS: var1 ln_y Error -4.10699540 0.06879095 -4.21943501 0.10096482 The following is my SAS code: PROC IMPORT OUT= WORK.dat DATAFILE= "C:\Documents and Settings\nxf\Desktop\mydat.xls" DBMS=EXCEL REPLACE; GETNAMES=YES; MIXED=NO; SCANTEXT=YES; USEDATE=YES; SCANTIME=YES; RUN; pr...