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

learn more… | top users | synonyms

9
votes
4answers
959 views

How to optimize “u[0]*v[0] + u[2]*v[2]” code line with SSE or GLSL

I have the following function (from the opensource project "recast navigation"): /// Derives the dot product of two vectors on the xz-plane. (@p u . @p v) /// @param[in] u A vector [(x, y, ...
8
votes
2answers
888 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 ...
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 ...
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 ...
6
votes
1answer
472 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 ~ ...
6
votes
2answers
1k views

Quaternions -> Euler Angles -> Rotation Matrix trouble (GLM)

I'm writing a program that loads a file containing a scene description and then displays it using OpenGL. I'm using GLM for all of my math operations. Rotations in the scene file are stored in ...
5
votes
3answers
381 views

Plot the Profile Deviance for a GLM fit in R

I would like to be able to plot the profile deviance for a parameter estimate fitted using the function glm() in R. The profile Deviance is the deviance function for different values of the parameter ...
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 ...
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 ...
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 ...
4
votes
2answers
623 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 ...
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 ...
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), ...
4
votes
1answer
315 views

glm and relative risk -replicate Stata code in R

Could anyone help me replicate these relative risk calculations (and its confidence interval) in R? A similar procedure used in STATA is described here. Could anyone show me how to do this in R (my ...
3
votes
2answers
105 views

Multiple glm in for loop

I have an R dataframe, strongly simplified as: id <- rep(1:2, c(6,8)) correct <- sample(0:1,14,TRUE) phase <- c(rep("discr",3),rep("rev",3), rep("discr",4),rep("rev",4)) dat <- ...
3
votes
1answer
838 views

Warning: non-integer #successes in a binomial glm! (survey packages)

I am using the twang package to create propensity scores, which are used as weigtings in a binomial glm using survey::svyglm. The code looks something like this: pscore <- ps(ppci ~ ...
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
3answers
254 views

R : Pass argument to glm inside an R function

I am trying to get used to scoping issues in R. I'd like to call the function glm() inside a function but it does not work, apparently for scoping reasons I did not manage to fix with the functions ...
3
votes
1answer
186 views

Combining yaw and pitch together

Why doesn't resultA equal resultB? I have no idea what I'm doing wrong. Can you give me an explanation? float alpha = glm::radians(45.0f); glm::mat4 xRot(glm::vec4(1, 0, 0, 0), ...
3
votes
1answer
79 views

What I came up with by trial and error works, could you explain why?

First of all, I wasn't sure if this question is welcome here and I checked the FAQ and found out that "I would like others to explain" questions are. The main issue is that I need to store rotations ...
3
votes
1answer
64 views

Difference between svyglm and weighted glm

I would like to know what the difference is between using svyglm or a weighted glm. For example: M1 = glm(formula = yy ~ age + gender + country , family = binomial(link = "probit"), ...
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 ...
3
votes
0answers
219 views

Which function/package for robust linear regression works with glmulti (i.e., behaves like glm)?

Background: Multi-model inference with glmulti glmulti is a R function/package for automated model selection for general linear models that constructs all possible general linear models given a ...
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 ...
2
votes
3answers
64 views

Predict.glm not predicting missing values in response

For some reason, when I specify glms (and lm's too, it turns out), R is not predicting missing values of the data. Here is an example: y = round(runif(50)) y = c(y,rep(NA,50)) x = rnorm(100) m = ...
2
votes
2answers
8k views

glm rotate usage in Opengl

I am rendering a cone, and I would like to rotate it, 90 degrees anti-clockwise, so that the pointy end faces west! I am using OpenGL 3+. Here is my code in my Cone.cpp so far: //PROJECTION ...
2
votes
2answers
181 views

Seamlessly cast between math libraries

I am using two math libraries in a game project. One is the GLM library and the other one is the math part of Box2D. Occasionally conversion between the two is necessary, like this: b2Vec2 vec1(1.0f, ...
2
votes
1answer
208 views

How do I use a custom link function in glm?

I don't want to use the standard log link in glm for Poisson regression, since I have zeros. Consider the following code: foo = 0:10 bar = 2 * foo glm(bar ~ foo, family = poisson(link = "identity")) ...
2
votes
2answers
274 views

glm::ivec2 as key in unordered map

lately I am more a user of the Scala Programming Language than C++, And now I am frustrated in porting a very simple line of code val map = new HashMap[Vec2i,Entity] it simply refuses to compile in ...
2
votes
1answer
169 views

How to save glm result without data or only with coeffients for prediction?

When I use the following R code, model_glm=glm(V1~. , data=xx,family="binomial"); save(file="modelfile",model_glm); The size of modelfile will be as much as the data, which will be 1gig in my case. ...
2
votes
1answer
114 views

modify glm function to adopt user-specified link function in R

In glm in R, the default link functions for the Gamma family are inverse,identity and log. Now for my particular question, I need to use gamma regression with response Y and a modified link function ...
2
votes
1answer
974 views

GLM: How to transpose a vector?

Maybe I'm just missing something in the docs, but it seem it's not possible with GLM to take the transpose of a vector. I also see no mat3x1 or mat1x3 types. Also glm::transpose doesn't work for ...
2
votes
1answer
866 views

Bigglm in R: Limitations and Improvements of source code (E.g. Call to Fortran)

I have recently been using R to run a Generalised Linear Model(GLM) on a 100 mb csv file ( 9 million rows by 5 columns). The contents of this file includes 5 columns called depvar, var1,var2,var3,var4 ...
2
votes
1answer
480 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
107 views

How to convert Euler Angles to Front, Up, Right vectors

I need a function that given Yaw, Pitch, and Roll, can produce the Front (or Looking At), Right, and Up vectors in "world coordinates". In my particular world space, starting from the origin (0,0,0), ...
2
votes
1answer
147 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 ~ ...
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 ...
2
votes
0answers
48 views

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

I have been struggling with this for a while and any help would be much appreciated. I am trying to write a function that runs several stepwise regressions and outputs all of them to a list. ...
2
votes
0answers
120 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 ...
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 ...
1
vote
2answers
184 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
703 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
587 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
1answer
92 views

Is it possible to fit a linear model with only a response variable?

If I do this, I get two coefficients (intercept and year) data <- data.frame(accidents=c(3,1,5,0,2,3,4), year=1:7) glm(accidents ~ year, family=poisson(link = log), data) Coefficients: ...
1
vote
1answer
156 views

Poisson regression with both response and explanatory variables as counting [closed]

I’ve got the following variables: Response: number of quota units leased (in and out) by fishers. Explanatory: number of quota units own by fishers. I fitted a GLM (Poisson), but I’m not totally ...
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
3answers
829 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 ...
1
vote
1answer
30 views

When disabling GL_DEPTH_TEST, textures disappear

Okay so I have this fully working scene, where there is a vinyl player on a shelf with speakers. Everything works (models and textures using GLM, interface using Mac-Cocoa). What I am implementing ...
1
vote
3answers
72 views

Selecting the statistically significant variables in an R glm model

I have an outcome variable, say Y and a list of 100 dimensions that could affect Y (say X1...X100). After running my glm and viewing a summary of my model, I see those variables that are statistically ...
1
vote
2answers
52 views

Shift dimensions of a vec3

Question I want to shift the dimensions x, y and z of a three dimensional vector vec3 by a number n. vec3 shift(int n, vec3 vector); How can I improve my algorithm to get the best performance and ...

1 2 3