実際、それはあなたが何を得たいかによって異なります。予測に対してのみロジスティック回帰を実行する場合、データに適した教師付き分類方法を使用できます。別の可能性:判別分析(パッケージMASSのlda()およびqda())
r <- lda(y~x) # use qda() for quadratic discriminant analysis
xx <- seq(min(x), max(x), length=100)
pred <- predict(r, data.frame(x=xx), type='response')
yy <- pred$posterior[,2]
color <- c("red","blue")
plot(y~x,pch=19,col=color[pred$class])
abline(lm(y~x),col='red',lty=2)
lines(xx,yy, col='blue', lwd=5, lty=2)
title(main='lda implementation')
一方、予測の信頼区間や推定値の標準誤差が必要な場合、ほとんどの分類アルゴリズムは役に立ちません。多数のパッケージが利用可能な、一般化された加算(混合)モデルを使用できます。私はよくSimon Woodのmgcvパッケージを使用します。一般化された加算モデルでは、予測子のモデリングにスプラインを使用できるため、ロジスティック回帰よりも柔軟性があります。
set.seed(55)
require(mgcv)
n <- 100
x1 <- c(rnorm(n), 1+rnorm(n))
x2 <- sqrt(c(rnorm(n,4),rnorm(n,6)))
y <- c(rep(0,n), rep(1,n))
r <- gam(y~s(x1)+s(x2),family=binomial)
xx <- seq(min(x1), max(x1), length=100)
xxx <- seq(min(x2), max(x2), length=100)
yy <- predict(r, data.frame(x1=xx,x2=xxx), type='response')
color=c("red","blue")
clustering <- ifelse(r$fitted.values < 0.5,1,2)
plot(y~x1,pch=19,col=color[clustering])
abline(lm(y~x1),col='red',lty=2)
lines(xx,yy, col='blue', lwd=5, lty=2)
title(main='gam implementation')
まだまだやることがたくさんあります。
op <- par(mfrow=c(2,1))
plot(r,all.terms=T)
par(op)
summary(r)
anova(r)
r2 <- gam(y~s(x1),family=binomial)
anova(r,r2,test="Chisq")
...
Generalized Additive ModelsについてのSimon Woodの本をお勧めします