For questions relating to generalized linear models. For the GLM math library, see [tag:glm-math].
0
votes
0answers
4 views
R: output glm results (with factor names) in usable format
I am trying to export the results of a glm into a dataframe that I can work with in R. I have tried the following code:
# Declare GLM on binary data and output to summary table
summary(binModel ...
1
vote
1answer
28 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 ...
2
votes
0answers
40 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. ...
-3
votes
0answers
28 views
How to compare matrix (glm::matrix) to vector (glm::vec3)
I have a few matrices: camera, model matrices (glm::mat4). I presume that both matrices store the positions in X,Y,Z form.
I need to find the closest between models to some point located at x,y,z ...
0
votes
0answers
19 views
GLM matrix 4X4 (mat4) to array and back
I need to put a glm math library mat4 into a sqlite3 BLOB and back. What would be the most efficient approach? Serialize mat4 to bytes?, Turn mat4 to a float array? BLOB will not take a mat4 directly
...
0
votes
1answer
47 views
Which euler angle order does this code result in?
Using the mathematics library GLM, I use this code to combine the euler angle rotations to a rotation matrix.
#include <GLM/gtc/matrix_transform.hpp>
using namespace glm;
mat4 matrix = ...
-4
votes
0answers
24 views
Wich is the estimator for the svyglm? [closed]
I would like to know wich is the estimator for svyglm I already read survey pakage and differents book abou that but I could not find the development for the estimator. I know that doesnt use maximum ...
3
votes
1answer
78 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
60 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"),
...
2
votes
3answers
61 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 = ...
0
votes
0answers
49 views
How to see how good is my model? [closed]
I am using glm to find a model using training data and then use test data to see how well the model is behaving. My response variable is numeric.
Below is a toy example that is showing the steps ...
1
vote
3answers
67 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 ...
2
votes
1answer
103 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), ...
1
vote
1answer
57 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
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 ...
0
votes
1answer
83 views
Incorrect rotations using openGL GLM and shaders
The goal of my program is to display a simple colored triangle rotating on the Y axis without any translation. I'm using the GLM library. The problem is that the transformations of my triangle are not ...
0
votes
0answers
38 views
GLMFIT and GLMVAL confusion
In MATLAB I see in GLMFIT you have to give a distr parameter, with the link parameter optional. Might be missing something obvious, but a bit confused as to what the actual form of the equation it is ...
0
votes
1answer
96 views
Model fitting: glm vs glmmPQL
I am fitting a model regarding absence-presence data and I would like to check whether the random factor is significant or not.
To do this, one should compare a glmm with a glm and check with the ...
1
vote
2answers
101 views
Matrix operations on only part of vertex buffer (opengl-tutorial.org)
I recently learned that:
glBegin(GL_TRIANGLES);
glVertex3f( 0.0f, 1.0f, 0.0f);
glVertex3f(-1.0f,-1.0f, 0.0f);
glVertex3f( 1.0f,-1.0f, 0.0f);
glEnd();
is not really how its done. I've been working ...
0
votes
1answer
71 views
GLM: Can't compile anymore
Does anybody use this library anymore?
Worked great for me last year but now my code isn't compiling:
(on MinGW with GCC 4.6.1):
In file included from ...
1
vote
1answer
105 views
Camera Rotation using lookAt
Hey guys I am trying to do a Camera class that uses lookAt from glm library. I have 4 points, the first one is eye, that is the camera position in space, the second one is the look, that is the point ...
0
votes
1answer
129 views
Camera Translation in OpenGL
I am trying to do a class to walk through the world in OpenGL, but I am having problems with the mathematics. My idea here is to use the function lookAt from glm to set the observer in the position I ...
2
votes
0answers
117 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 ...
0
votes
0answers
21 views
glm with paired data
I'm new in the "R" world so it might seem as a dumb question but I was wondering if it is possible to do a GLM in R with paired data (like a t-test) and what I should add to do this.. (paired=T?)
...
0
votes
0answers
27 views
How to loop with repeated values within a variable?
I have a dataset called 'bjmd' that looks like this (simplified)
rte year y obs
22037 46001 1 0 1
22042 46001 2 4 3
22047 46001 3 5 3
22202 46002 1 11 1
22207 ...
0
votes
0answers
40 views
Create formula with all main effects and first order interaction effects in R in glm
I am on the lookout for an R function that will create a formula with all main effects and first order interaction effects for use in glm. E.g. if I have a vector with factors facts=c("F1","F2","F3") ...
0
votes
0answers
83 views
How do I calculate prediction intervals for GLM, BRT and MARS models in R?
I'm working across the statistical literature to find methods for calculating prediction intervals for GLM, BRT (boosted regression tree) models and MARS (multivariate adaptive regression spline) ...
0
votes
0answers
85 views
R - Separation issue in binary response models - glm, brglm, logistf
I am encountering some issues with my data and need some help.
I am trying to run glm analysis with a presence/absence variable as response variable and several explanatory variable (time, location, ...
0
votes
1answer
57 views
Access & Re-use model formula (R)
I want to automate the following procedure.
Fit a (lm /glm) model using step().
Extract the variables in the outcome model of (1), e.g., (X1+X2) as in Y~X1+X2
Re-use the model from (1) in a new ...
0
votes
1answer
103 views
Using summary(glm-object) inside ldply() with the summarise() - function
How do i use the summary-function inside a ldply()-summarise-function to extract p-values?
Example data:
(The data frame "Puromycin" is preinstalled)
library(reshape2)
library(plyr)
Puromycin.m ...
-1
votes
1answer
772 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. ...
2
votes
1answer
203 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"))
...
0
votes
1answer
169 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 = ...
0
votes
1answer
81 views
How to 'update' a model built using 'glm' in R
In the reproducible code below (last line), the 'update' function doesn't work if I replace 'Income' with 'fieldToRemove'. How can I make this function work? I need to run that line in loop.
...
0
votes
0answers
79 views
How to use quasi-likelihood in glmulti
I am trying to carry out multi-model inference and model averaging using package glmulti for overdispersed count data.
Glmulti can compute quasi-AIC (crit = qaic) and the argument family = ...
1
vote
1answer
72 views
First Difference Bootstrap from Negative Binomial
novice here. I am fitting a negative binomial model on count data where Y is the count of events, D is the treatment, and X is a logarithmic offset:
out <- glm.nb(y ~ d + offset(log(x)),data=d1)
...
0
votes
2answers
185 views
Extracting p-value from lapply list of glm fits
I am using lapply to perform several glm regressions on one dependent variable by one independent variable at a time. Right now I am specifically interested in the Pr(>|z|) of each independent ...
0
votes
1answer
133 views
Convert glm::vec4 to glm::vec3
How do I convert a glm::vec4 to a glm::vec3?
Only x, y, z is required- the w component can be dropped.
In GLSL this can be done with .xyz[1], but in glm this results in a compile error:
error: ...
1
vote
0answers
108 views
Simple effect tests on glmm significant interactions in R
I have significant interactions in my glmm output and I know what my reference category (another interaction) is, but I need to know which variable is fixed when contrasting the significant ...
6
votes
1answer
466 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 ~ ...
3
votes
2answers
104 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 <- ...
5
votes
1answer
992 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 ...
1
vote
3answers
96 views
when executing glm the 'gender' variable is suffixed by value(M)
When I run 'glm' in R, the 'gender' variable is suffixed by M (for male). Does it has any special meaning or there is something wrong in my code
>as.formula('response ~ gender + age + var1 ...
4
votes
1answer
313 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 ...
1
vote
0answers
36 views
Call 'glm' in R with categorical response variable [duplicate]
Possible Duplicate:
Why am I getting “algorithm did not converge” and “fitted prob numerically 0 or 1” warnings with glm?
I am trying to to fit glm using the following data with response ...
1
vote
2answers
51 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 ...
0
votes
1answer
88 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
...
1
vote
1answer
151 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
115 views
data error in BMA package's bic.glm but not glm
I am estimating a poisson model from a set of interaction coefficients, and the BMA package's bic.glm helps navigate the model space. I've been using it for years, but when I updated R from 2.10.x to ...
-1
votes
1answer
192 views
How can I do model selection by AIC with a Gamma GLM in R?
As the documentation explains, the dispersion parameter in the Gamma glm fit is not the MLE. Thus the MLE needs to be calculated somehow and then used to calculate the AIC.

