4
votes
1answer
71 views

Missing object error when using step() within a user-defined function

5 days and still no answer As can be seen by Simon's comment, this is a reproducible and very strange issue. It seems that the issue only arises when a stepwise regression with very high predictive ...
1
vote
1answer
58 views

Regression for a Rate variable in R

I was tasked with developing a regression model looking at student enrollment in different programs. This is a very nice, clean data set where the enrollment counts follow a Poisson distribution ...
2
votes
0answers
122 views

Model formula for glm regression with user-specified family

Background I am trying to predict the sales for a product line (y_test in the sample at the end). Its sales for a timeperiod are based on all previous sales of another product (x_test) and how many ...
-1
votes
1answer
818 views

Interpreting the output of glm for Poisson regression [closed]

Consider the following: foo = 1:10 bar = 2 * foo glm(bar ~ foo, family=poisson) I get results Coefficients: (Intercept) foo 1.1878 0.1929 Degrees of Freedom: 9 Total (i.e. ...
0
votes
1answer
177 views

Plot each predictor variable from multivariate GLM versus response (other predictors held constant)

I can plot one predictor variable (from a mulitvariate logistic, binomial GLM) versus the predicted response. I do it like this: m3 <- mtcars # example with mtcars model = ...
6
votes
1answer
476 views

How obtain the true residual deviance and degrees of freedom in R of a glm model when a set of parameters gets pasted() as a vector

I'm writing a script (in python, with the R parts in pypeR) such that I need to use a function in R that compares two models with an F-ratio test. The models are like this: Model 1: Response ~ ...
0
votes
1answer
92 views

Cedergren Dataset download in ubuntu

Has anyone used cedergren data set in Ubuntu. Im having problem downloading it as I hav Ubuntu OS. Its basically used for logistic regression ...
3
votes
2answers
1k views

How to extract a p-value when performing anova() between two glm models in R

So, I'm trying to compare two models, fit1 and fit2. Initially, I was just doing anova(fit1,fit2), and this yielded output that I understood (including a p-value). However, when I switched my models ...
3
votes
1answer
133 views

How to vectorize equations?

I'm trying to implement the Softmax regression algorithm to solve the K-classifier problem after watching Professor Andrew Ng's lectures on GLM. I thought I understood everything he was saying until ...
1
vote
1answer
709 views

Logistic regression - cbind command in glm

I am doing logistic regression in R. Can somebody clarify what is the differences of running these two lines? 1. glm(Response ~ Temperature, data=temp, family = ...
1
vote
1answer
592 views

How to set the Coefficient Value in Regression; R

I'm looking for a way to specify the value of a predictor variable. When I run a glm with my current data, the coefficient for one of my variables is close to one. I'd like to set it at .8. I know ...
2
votes
1answer
470 views

CUDA-compatible GLM (generalized linear model) routine

I've searched for a little bit now, but can't find a glm C function that runs on CUDA? Does anyone know if this is available somewhere? I need to run hundreds of simultaneous glm regressions on the ...
0
votes
1answer
507 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 ...
5
votes
2answers
3k views

Specifying formula in R with glm without explicit declaration of each covariate

I would like to force specific variables into glm regressions without fully specifying each one. My real data set has ~200 variables. I haven't been able to find samples of this in my online ...