Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
関数を使用して、2 つの変数とlowessの間の回帰を当てはめています。の新しい値での適合値を知りたいです。たとえば、次の例で適合値を見つけるにはどうすればよいですか。それができることは知っていますが、誰かのプロットを再現したいのですが、彼は.xyxx=2.5loesslowess
lowess
x
y
x=2.5
loess
set.seed(1) x <- 1:10 y <- x + rnorm(x) fit <- lowess(x, y) plot(x, y) lines(fit)