Displaying 2 results from an estimated 2 matches for "parmlabel".
Did you mean:
parlabel
2006 Mar 02
0
Combining plaintext and plotmath expressions
...n my string list to look like this:
"X translation ("*mu*"m)"
"Rotation ("*degree*")"
"Mean ("*mu*"m)"
"Vb1-Vb2 "*(Omega)
H[2]O "Used"
Max P
# Defects
I read in the strings, and use one at a time in the variable "parmlabel".
I have another variable called "testlabel" which I also need to concatenate, and can be things like "distance" or "E-test". Sometimes I also concatenate another variable "oplabel" when the variable "op" is not zero-length.
I have kludged a s...
2008 Mar 10
1
ML Estimation Differences with R and SAS
...evels=c('other','black','white'))
GLM.1 <- glm(low ~ lwt + ptl + ht + race + smoke ,
family=binomial(logit), data=Dataset)
summary(GLM.1)
MY SAS CODE IS:
PROC LOGISTIC descending DATA=p2;
class race (ref='other');
MODEL LOW = lwt ptl ht race smoke / lackfit parmlabel expb link=logit;
RUN;
MY R OUTPUT IS:
Coefficients:
Estimate Std. Error z value Pr(>|z|)
(Intercept) 0.92619 0.85549 1.083 0.27897
lwt -0.01650 0.00692 -2.384 0.01712 *
ptl 1.23116 0.44607 2.760 0.00578 **
ht 1.76197...