Re: Classic logistic regression missing !!! (Generalized linear models)

2018-10-11 Thread Stephen Boesch
So the LogisticRegression with regParam and elasticNetParam set to 0 is not what you are looking for? https://spark.apache.org/docs/2.3.0/ml-classification-regression.html#logistic-regression .setRegParam(0.0) .setElasticNetParam(0.0) Am Do., 11. Okt. 2018 um 15:46 Uhr schrieb pikufolgado

Classic logistic regression missing !!! (Generalized linear models)

2018-10-11 Thread pikufolgado
Hi, I would like to carry out a classic logistic regression analysis. In other words, without using penalised regression ("glmnet" in R). I have read the documentation and am not able to find this kind of models. Is it possible to estimate this? In R the name of the function is "glm". Best