Posts by Kaluce • 107 points
4 posts
-
6
votes2
answers938
viewsQ: How to take the Hosmer-Lemeshow test on R?
I have a data set to make the logistic regression of the dependent variable childbirth which is binary qualitative. With the following command I obtain the multivariate logistic model in the program…
-
2
votes1
answer419
viewsQ: Beta and OR confidence interval
I have a data set to make the logistic regression of the dependent variable childbirth which is binary qualitative. I use the command below to obtain the univariate logistic model in the R program:…
-
-2
votes1
answer1068
viewsQ: R code for likelihood testing
I have a data set to do a logistic regression for the dependent variable "parturition" which is binary qualitative. With the command below I get the univariate logistic model: GLM.1 <- glm(parto…
-
2
votes1
answer2121
viewsQ: How to make turn ROC - AUC reversed in R?
Good night I need help making the ROC turn on the R. I’m using the following command: library(ROCR) pred <- prediction(predictions = banco$ic, labels = banco$SM) perf <- performance(pred,…