For questions relating to generalized linear models. For the GLM math library, see [tag:glm-math].

learn more… | top users | synonyms

1
vote
0answers
1k views

nlme error “Invalid formula for groups” although random effect specified

I have done some searching for this, but the mailing list posts I have found are associated with the person not specifying a random effect in nlme whereas I have done this. I also own the book Mixed ...
4
votes
2answers
206 views

Exporting multiple glm plots as PNGs?

SO, I'm trying to export plots of my linear model. When I do it as a PDF, the PDF has four pages and four different charts. When I export as a PNG, I only get the first chart. How do I export so ...
8
votes
2answers
889 views

R glm standard error estimate differences to SAS PROC GENMOD

I am converting a SAS PROC GENMOD example into R, using glm in R. The SAS code was: proc genmod data=data0 namelen=30; model boxcoxy=boxcoxxy ~ AGEGRP4 + AGEGRP5 + AGEGRP6 + AGEGRP7 + AGEGRP8 + RACE1 ...
1
vote
1answer
588 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 ...
1
vote
2answers
1k views

R glm starting values not accepted log-link

I want to run a gaussian glm with log-link and offset. The following problems arise: y <- c(1,1,0,0) t <- c(5,3,2,4) no problem: exp(coef(glm(y~1 + offset(log(t)), family=poisson))) with ...
0
votes
1answer
1k views

Linear Regression in R with variable number of explanatory variables [duplicate]

Possible Duplicate: Specifying formula in R with glm without explicit declaration of each covariate how to succinctly write a formula with many variables from a data frame? I have a ...
5
votes
1answer
3k views

glm::perspective explanation

I am trying to understand what glm::mat4 Projection = glm::perspective(35.0f, 1.0f, 0.1f, 100.0f); Does it create a Projection matrix? Clips off anything that is not in the user's view? I did ...
0
votes
2answers
3k views

some opengl and glm explanation

Can somebody explain me what the following lines do ? glm::mat4 Projection = glm::perspective(45.0f, 1.0f, 0.1f, 100.0f); angle = (GLfloat) (i % 360); glm::mat4 View = glm::mat4(1.); View = ...
2
votes
3answers
749 views

Create view matrices in GLSL shader

I have many positions and directions stored in 1D textures on the GPU. I want to use those as rendersources in a GLSL geometry shader. To do this, I need to create corresponding view matrices from ...
1
vote
1answer
533 views

Error in cv.glmnet

I am using the following code getting the error message in R version 2.13.1. in mac. cv.glmnet(dsgn.mat,resp,family="gaussian",nfolds=5) Error in as.matrix(cbind2(1, newx) %*% nbeta) : error in ...
2
votes
1answer
468 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 ...
7
votes
2answers
3k views

How to initialize a glm::mat4 with an array?

I'm using the OpenGL Mathematics Library (glm.g-truc.net) and want to initialize a glm::mat4 with a float-array. float aaa[16]; glm::mat4 bbb(aaa); This doesn't work. I guess the solution is ...
1
vote
1answer
282 views

Stata and R results not matched in Logistic Regression with two categorical predictors and their interaction [closed]

I am getting confused when i am trying to compare the results of Stata and R. I am using example given on the webpage http://www.ats.ucla.edu/stat/stata/webbooks/logistic/chapter2/default.htm First ...
1
vote
2answers
670 views

Step-by-step formula based _R_ codes for GLM and GLMM

I know how to fit generalized linear models (GLMs) and generalized linear mixed models (GLMMs) with glm and glmer from lme4 package in R. Being a student of statistics, I'm interested in learning how ...
6
votes
4answers
372 views

Speeding up transform calculations

I am programming an OpenGL3 2D Engine. Currently, I am trying to solve a bottleneck. Please hence the following output of the AMD Profiler: http://h7.abload.de/img/profilerausa.png The data was made ...
4
votes
2answers
937 views

Predicting/imputing the missing values of a Poisson GLM Regression in R?

I'm trying to explore ways of imputing missing values in a data set. My dataset contains the number of counts of an occurance (Unnatural, Natural and the sum Total) for Year(2001-2009), Month(1-12), ...
1
vote
2answers
195 views

R not removing terms when doing MAM

I want to do a MAM, but I'm having difficulty in removing some terms: full.model<-glm(SSB_sq~Veg_height+Bare+Common+Birds_Foot+Average_March+Average_April+ ...
1
vote
1answer
353 views

Help with R Zeroinfl model

I am carrying out a zero-inflated negative binomial GLM on some insect count data in R. My problem is how to get R to read my species data as one stacked column so as to preserve the zero inflation. ...
4
votes
2answers
624 views

Why is caret train taking up so much memory?

When I train just using glm, everything works, and I don't even come close to exhausting memory. But when I run train(..., method='glm'), I run out of memory. Is this because train is storing a lot ...
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 ...
1
vote
1answer
2k views

R probit regression marginal effects

I am using R to replicate a study and obtain mostly the same results the author reported. At one point, however, I calculate marginal effects that seem to be unrealistically small. I would greatly ...
0
votes
2answers
1k views

How would i set up collision using the Bullet Physics Library?

hey im having a bit of a "delay" in setting up some collision in my opengl/sfml game. its not much of an error, just asking for some help. Im using Bullet Physics(this is the API reference) and i have ...
-1
votes
1answer
818 views

Rotating a model in GLM

hey ive been working with GLM and i have been noticing that im not able to find a function to rotate the model. There isnt much to this question, but im wondering if theres a way to rotate a GLM ...
0
votes
1answer
180 views

GLM Partial transparency

ok in my opengl/SFML program, i am using GLM(fron nate robins at devernay.free.fr) and im having a couple of dilemmas the main problem thats persistant is when i load a wavefront model (.obj) into my ...
1
vote
2answers
653 views

A question about GLM

im having a serious problem and im not even gonna bother posting pictures... OK thanks for the answers so far, but im still having some problems. my next question(or problem) in line is that when i ...
2
votes
1answer
481 views

R programming: Using varfun to specify variance function in glm family quasi

I want to use varfun to specify my own variance functions in glm's quasi family, but I can't find any documentation on how to use the function. Does anyone have an idea on how to use this function?
2
votes
1answer
3k views

Incorrect order of matrix values in glm?

First of all, I'm not an expert with OpenGL. I started using GLM library to do mathematics operations over OpenGL 3 and GLSL. I need an orthographic projection to draw 2D graphics, so I writed this ...
1
vote
3answers
830 views

Performing GLM within python script on windows 7 64

I'm trying to perform GLM (Generalized linear model) repeatedly within a python script (within a loop). 1- I tried to use Stats within Scipy glm function but description is quite inexistant and I ...
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 ...

1 2 3