Re: [R] Conditional piece-wise dependent regression

2005-08-02 Thread Arie
Thank you Dimitris Reid, you were very helpful. Best wishes, Arie. __ R-help@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

[R] Conditional piece-wise dependent regression

2005-08-01 Thread Arie
Hi, after reading some R docs, I couldn’t figure out how can I find the solution for the following problem, therefore I would ask this friendly list for an advice. We’re making a least square approximation for an experiment described by the following model: T is the time, Y is some measured

Re: [R] Conditional piece-wise dependent regression

2005-08-01 Thread Dimitris Rizopoulos
/ http://www.student.kuleuven.be/~m0390867/dimitris.htm - Original Message - From: Arie [EMAIL PROTECTED] To: r-help@stat.math.ethz.ch Sent: Monday, August 01, 2005 10:17 AM Subject: [R] Conditional piece-wise dependent regression Hi, after reading some R docs, I couldn't figure out how

Re: [R] Conditional piece-wise dependent regression

2005-08-01 Thread Huntsinger, Reid
, 2005 4:40 AM To: Arie Cc: r-help@stat.math.ethz.ch Subject: Re: [R] Conditional piece-wise dependent regression Since you want least squares, I think you could use lm() here, i.e., U - 50 V - 100 Time - 1:150 dat - data.frame(y = rnorm(150), Time, f1 = as.numeric(Time U), f2 = as.numeric(Time V