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.
我有两个矩阵一个 X,所有特征值都有 300000 行和 14 列,其中列代表特征 ID。对于每个我都有另一个变量,它定义标签 Y,其尺寸为 300000 x 1,0 或 1。
如何从这个矩阵计算逻辑回归?
这非常容易。
m <- glm(Y ~ X, family = 'binomial') summary(m)
将来只需尝试首先输入看起来很明显的内容。如果你不怕犯错,你会学得更快。
glmnet 也可以解决您的问题
glm1=cv.glmnet(x,y,family="binomial",alpha=0) prglm=predict(glm1,newx,type="response")