Displaying 2 results from an estimated 2 matches for "lowesslin".
Did you mean:
lowessline
2010 Nov 22
1
how to sample lowess/loess into matrix ?
code:
x <- rnorm(32)
y <- rnorm(32)
plot(x,y)
lines(lowess(x,y),col='red')
Now I need to sample the lowess function into matrix where one series will
be X and other will be values of lowess at particular X.
--
View this message in context: http://r.789695.n4.nabble.com/how-to-sample-lowess-loess-into-matrix-tp3053458p3053458.html
Sent from the R help mailing list archive at
2010 Nov 24
0
4. Rexcel (Luis Felipe Parra)-how to run a code from excel
...2 Nov 2010 05:32:05 -0800 (PST)
From: madr <madrazel at interia.pl>
To: r-help at r-project.org
Subject: Re: [R] how to sample lowess/loess into matrix ?
Message-ID: <1290432725271-3053601.post at n4.nabble.com>
Content-Type: text/plain; charset=us-ascii
I found it, it was SO simple:
lowessline <- lowess(x,y)
write.csv(lowessline, "loess.csv")
--
View this message in context:
http://r.789695.n4.nabble.com/how-to-sample-lowess-loess-into-matrix-tp30534
58p3053601.html
Sent from the R help mailing list archive at Nabble.com.
------------------------------
Message: 14
Date...