[R] survreg: fitting different location parameters

2005-01-24 Thread Hadassa Brunschwig
Hi R-Help! My question: I have lifetime/failure data of machines with different stress levels and i think an weibull/extreme value distribution would fit this data. So I did: model1 - survreg(Surv(lfailure)~stress,data=steel,dist=extreme) (where lfailure=log(failure)) Now I would like to

[R] survreg: fitting different location parameters

2005-01-24 Thread h . brunschwig
Hi R-Help! My question: I have lifetime/failure data of machines with different stress levels and i think an weibull/extreme value distribution would fit this data. So I did: model1 - survreg(Surv(lfailure)~stress,data=steel,dist=extreme) (where lfailure=log(failure)) Now I would like to

[R] survreg: fitting different location parameters

2005-01-24 Thread h . brunschwig
Hi R-Help! My question: I have lifetime/failure data of machines with different stress levels and i think an weibull/extreme value distribution would fit this data. So I did: model1 - survreg(Surv(lfailure)~stress,data=steel,dist=extreme) (where lfailure=log(failure)) Now I would

Re: [R] survreg: fitting different location parameters

2005-01-24 Thread Göran Broström
On Sun, Jan 23, 2005 at 03:10:18PM -0500, [EMAIL PROTECTED] wrote: Hi R-Help! My question: I have lifetime/failure data of machines with different stress levels and i think an weibull/extreme value distribution would fit this data. So I did: model1 -

Re: [R] survreg: fitting different location parameters

2005-01-24 Thread h . brunschwig
I am still trying to find a common intercept but a different slopes for each group within my lifetime data. By stratifying the variable stress (the groups) I get different scale parameters which is not my goal. So I did this: survreg(Surv(lfailure)~as.factor(stress),data=steel,dist=extreme)