Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 variable. At first I thought I could do it by using NA in the positions I don't want it to be connected, as in the example below:

y = rpois(10, lambda = 1)
x = runif(10)
c = c(c("a", "b", "b", "a", "a"), rep(NA, 5))

data = data.frame(y,x,c)

r = glm(formula = y ~ -1 + c + x, family = "poisson", data = data)

But this doesn't work since glm remove the lines that contain "NA". Any help?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.