我正在尝试在具有连续预测变量的二元结果变量的散点图上拟合黄土线。
以下是我正在使用的代码:
lw1<-loess(y~x, data=df)
plot(y~x, data=df, pch=19, cex=0.1)
lines(df$x, lw1$fitted, col='blue')
我也试过订购x变量:
j<-order(df$x)
lines(df$x[j], lw1$fitted, col='blue')
非常感谢任何帮助。
答案 0 :(得分:1)
使用ggplot2
和loess
更顺畅的我得到了这个:
ggplot(data=dat,aes(x,y)) +
geom_line() +
geom_smooth(method='loess')
但我认为你在这里寻找分类器。