search for: siccode

Displaying 2 results from an estimated 2 matches for "siccode".

Did you mean: si_code
2005 Aug 08
1
Help with "non-integer #successes in a binomial glm"
.... Could anyone give me some hint? Thanks a lot! FYI, I have posted both regressions (with and without weights) below. Ed > setwd("P:/Work in Progress/Haibo/Hans") > > Lease=read.csv("lease.csv", header=TRUE) > Lease$ET <- factor(Lease$EarlyTermination) > SICCode=factor(Lease$SIC.Code) > Lease$TO=factor(Lease$TenantHasOption) > Lease$LO=factor(Lease$LandlordHasOption) > Lease$TEO=factor(Lease$TenantExercisedOption) > > RegA=glm(ET~1+TO, + family=binomial(link=logit), data=Lease) > summary(RegA) Call: glm(formula = ET ~ 1 + TO, family =...
2005 Aug 05
1
question regarding logit regression using glm
...eights = weights, start = start, etastart = etastart, Can some one share your thoughts on how to solve this problem? Please read the following for details. Thank you very much! Best, Ed > Lease=read.csv("lease.csv", header=TRUE) > Lease$ET = factor(Lease$EarlyTermination) > SICCode=factor(Lease$SIC.Code) > TO=factor(Lease$TenantHasOption) > LO=factor(Lease$LandlordHasOption) > TEO=factor(Lease$TenantExercisedOption) > > RegA=glm(ET~1+MSA, + family=binomial(link=logit), data=Lease, weights=Origil.SQFT) Warning messages: 1: Algorithm did not converge in: glm.f...