For questions relating to generalized linear models. For the GLM math library, see [tag:glm-math].
0
votes
1answer
199 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
131 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
538 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
120 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 <- ...
7
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 ...
1
vote
3answers
116 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
350 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
38 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
61 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
106 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
164 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
125 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
206 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.
2
votes
1answer
202 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. ...
-1
votes
1answer
198 views
R Jackknife in Logistic Regression
I´m interested into apply a Jackknife analysis to in order to quantify the uncertainty of my coefficients estimated by the logistic regression. I´m using a glm(family=’binomial’) because my ...
0
votes
0answers
169 views
interactions in glm() in a split plot design [closed]
I have a split plot design, where Var2 and VAr3 are random distributed within Var1
Var1<-as.factor("yes","no")
Var2<-as.factor("yes","no")
Var3<-as.factor("yes","no")
I´m trying to ...
0
votes
0answers
140 views
bootstrap confidence intervals for the parameters of a glm model
When I try to obtain the confidence intervals for the parameters of a generalized linear model using glm I obtain the following error:
Error: inner loop 2; cannot correct step size
Below the code I ...
1
vote
0answers
179 views
SAS Using proc ttest or proc glm to factor a demographic variable into a comparison of two groups on an outcome measure
I have written SAS code to compare two groups for an outcome measure (i.e. reaction time - rt). However, we would like to factor in a demographic measure (i.e. IQ) to test whether the group ...
1
vote
1answer
333 views
Offset not working in binomial GLM
I'm trying to fit a logistic regression using glm( family='binomial').
Here is the model:
model<-glm(f_ocur~altitud+UTM_X+UTM_Y+j_sin+j_cos+temp_res+pp,
offset=(log(1/off)), ...
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 ...
1
vote
1answer
86 views
Switch to other function when an error occurs and program breaks in R [duplicate]
Possible Duplicate:
Exception handling in R
I use glm.nb function to fit an NB model, but sometimes the program gives an error:
Error in while ((it <- it + 1) < limit && ...
2
votes
1answer
161 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
86 views
Vectorize glm and extract all information
I have a data set "keywords" with several groups. I want to apply glm to each group individually to create a list of glm fits with one fit for each group.
I could do this with a for loop, but thats ...
1
vote
2answers
194 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
...
3
votes
1answer
986 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 ~ ...
0
votes
0answers
308 views
R glmnet output to glm
I have a regression model with binary outcome. I fitted the model with glmnet and got the selected variables and their coefficients.
Since glmnet doesn't calculate variable importance, I would like ...
0
votes
1answer
64 views
Glm VECTORIZE2_VEC redefined XCode warning
I keep getting warnings only in XCode about some macros in glm being redefined. it's not a huge issue but I find warnings annoying.
If I put a #ifndef block over the culprit macros but then the ...
0
votes
1answer
148 views
Binomial GLM Feature Selection with rfe function in caret
Is it possible to use the rfe function in the caret package to do feature selection on a binomial GLM? I would like to pass the data frame of predictors and predictions and have it return the best ...
0
votes
2answers
1k views
can't get glm::rotate to work
I can't get the call to glm::rotate(mat4, int, vec3(x,y,z)); to work. VS 2010 is telling me
Intellisense: no instance of function template "glm::gtc::matrix_transform::rotate" matches the argument
...
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 ...
0
votes
1answer
281 views
calculating R-squared in a multivariate analysis using glm in R
I am doing a backward elimination in R using the step() function. Now, I am trying to look at how each independent variable is ranked together with their AIC, F, and P values.
...
3
votes
0answers
232 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 ...
1
vote
1answer
127 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 ...
0
votes
1answer
184 views
fitting quasi family using glmulti?
I used the glmulti function in the glmulti package to obtain the best glm model for poisson error distributed data. No problems there. Once I had obtained the best model, I used the Chi-square test to ...
0
votes
0answers
78 views
Using NA in factors used in the design matrix for glm()
Assume I want a categorical variable (called c in the example below) to be connected with the first half of the elements in my response variable and not influence the second half of the response ...
1
vote
0answers
191 views
glm library ext.hpp compile issues (XCode iOS)
I'm trying to include the glm/ext.hpp extensions header to my project. Whereas glm.hpp can be included effortlessly and the project simply builds cleanly, the extensions for this library yield tons of ...
0
votes
1answer
1k views
Interpreting coefficient names in glmnet in R
I am using glmnet to predict probabilities based on a set of 5 features using the following code. I need the actual formula because I need to use it in a different (non R) program.
deg = 3
...
9
votes
4answers
971 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, ...
0
votes
1answer
221 views
Slow glm calculation when using rpy2
I want to calculate logistic regression parameters using R's glm package. I'm working with python and using rpy2 for that.
For some reason, when I'm running the glm function using R I get much faster ...
1
vote
1answer
281 views
quaternion inverts vector
I'm using glm::quaternions to rotate a vector around a certain axis. But the vector inverts the axis everytime it is called.
Here is my code to rotate my object around the side axis:
void ...
3
votes
3answers
270 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 ...
0
votes
0answers
233 views
Proc GLM ODS number format
How do you format the parameter estimates from ODS in Proc GLM in SAS? My code is
proc glm data = dat;
model y = x1 x2 ;
ods output ParameterEstimates=parmsdat ;
run ;
I want to ...
0
votes
1answer
108 views
What does -431602080.000000 value in GLMmodel vertex means?
I use a GLMmodel object in order to represent a Google Sketch Up model in a C++ program. These objects have a member (vertices) that contains a list of all the vertices of the object in a way like ...
3
votes
1answer
202 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),
...
0
votes
1answer
1k views
How to do Tukey's HSD post-hoc test after 1-way RM ANOVA in SAS?
I run the following lines:
DATA abc;
INPUT AA BB CC DD EE;
CARDS;
...
;
RUN;
PROC GLM DATA = abc;
MODEL AA BB CC DD EE = / NOUNI;
REPEATED conditions 5 (1 2 3 4 5) / PRINTE;
MEANS ...
2
votes
1answer
1k 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 ...
5
votes
3answers
390 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 ...
0
votes
2answers
904 views
Using the ns() function from the splines package inside glm()
I'm trying to use the ns() function from the splines package with a poisson GLM I am using to test for significance of particulate matter concentration (pm.lag0) on health outcomes (Freq):
> ...
1
vote
1answer
266 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
287 views
In R, using binomial() and lapply to constrain predict() values between 0 and 1
I have a GLM, family=binomial(link=logit) model that I apply within a predict() function, seen below. The predict values go beyond zero and 1, but I would like to keep them as probabilities. So I use ...