Re: [R] multivariate multi regression / aligning objects anything in bio or mapping?

2010-12-14 Thread Mike Marchywka
> From: pda...@gmail.com > Date: Tue, 14 Dec 2010 13:50:27 +0100 > To: bastiaan.berg...@wdc.com > CC: r-help@r-project.org > Subject: Re: [R] multivariate multi regression > > > On Dec 14, 2010, at 03:21 , Bastiaan Bergman w

Re: [R] multivariate multi regression

2010-12-14 Thread peter dalgaard
t] > Sent: Monday, December 13, 2010 6:06 PM > To: Bastiaan Bergman > Cc: r-help@r-project.org > Subject: Re: [R] multivariate multi regression > > > On Dec 13, 2010, at 8:46 PM, Bastiaan Bergman wrote: > >> Hello, >> >> >> I want to model my

Re: [R] multivariate multi regression

2010-12-13 Thread David Winsemius
t.org Subject: Re: [R] multivariate multi regression On Dec 13, 2010, at 8:46 PM, Bastiaan Bergman wrote: Hello, I want to model my data with the following model: Y1=X1*coef1+X2*coef2 Y2=X1*coef2+X2*coef3 Note: coef2 appears in both lines Xi, Yi is input versus output data respectively How

Re: [R] multivariate multi regression

2010-12-13 Thread Bastiaan Bergman
Angle Length(dX)==length(dY)==length(X)==length(Y)==number of measured sites on a wafer Hope this clarifies... -Original Message- From: David Winsemius [mailto:dwinsem...@comcast.net] Sent: Monday, December 13, 2010 6:06 PM To: Bastiaan Bergman Cc: r-help@r-project.org Subject: Re: [R] multiva

Re: [R] multivariate multi regression

2010-12-13 Thread Joe P King
ct: Re: [R] multivariate multi regression On Dec 13, 2010, at 8:46 PM, Bastiaan Bergman wrote: > Hello, > > > I want to model my data with the following model: > > > Y1=X1*coef1+X2*coef2 > Y2=X1*coef2+X2*coef3 > > > Note: coef2 appears in both lines > > Xi, Yi is in

Re: [R] multivariate multi regression

2010-12-13 Thread David Winsemius
On Dec 13, 2010, at 8:46 PM, Bastiaan Bergman wrote: Hello, I want to model my data with the following model: Y1=X1*coef1+X2*coef2 Y2=X1*coef2+X2*coef3 Note: coef2 appears in both lines Xi, Yi is input versus output data respectively How can I do this in R? I got this far: lm(Y1~X1+X2

[R] multivariate multi regression

2010-12-13 Thread Bastiaan Bergman
Hello, I want to model my data with the following model: Y1=X1*coef1+X2*coef2 Y2=X1*coef2+X2*coef3 Note: coef2 appears in both lines Xi, Yi is input versus output data respectively How can I do this in R? I got this far: lm(Y1~X1+X2,mydata) now how do I add the second line of t