Tagged Questions
5
votes
1answer
1k views
Confidence intervals for predictions from logistic regression
In R predict.lm computes predictions based on the results from linear regression and also offers to compute confidence intervals for these predictions. According to the manual, these intervals are ...
2
votes
1answer
148 views
How to obtain a LM object from regsubsets
Let's imagine we want to model the US State Public-School Expenditures (education) using income, young, urban and region as regressors. For more info: ?Anscombe
Model: education ~ ...
1
vote
2answers
186 views
Logistic regression error
Test <- read.table("C:/Users/ARAB/Documents/user_table.csv", header=T)
testlog <- glm(Conv ~ active_days, family=binomial("logit"))
this is a code i am trying to run in R but am getting error
...
1
vote
1answer
120 views
Using Gaussian family distribution to predict discrete quantities in GLM
Is it OK(legitimate approach) to use Generalized Linear Model with Gaussian family distribution to predict discrete quantities by for example rounding the output of Gaussian GLM to the nearest ...
1
vote
1answer
253 views
Speeding up lots of GLMs in R
First off, sorry about the long post. Figured it's better to give context to get good answers (I hope!). Some time ago I wrote an R function that will get all pairwise interactions of variables in a ...
0
votes
1answer
229 views
Plotting a Probability Equation
I ran a logit model and am trying to plot the probability curve. I'm posting the question here and not the stats board because it's more an R question than a stats on, or at least I think so.
My ...
0
votes
1answer
511 views
generalized R squared (Naglekerkes R^2)
does anybody know how to compute Naglekerkes generalized R Squared for GLMs using R? And does it makes any sence to use it for count data regression?
References:
generalized R^2
"Scroll down at to ...