search for: tenanthasopt

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

2005 Aug 08
1
Help with "non-integer #successes in a binomial glm"
...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 = binomial(link = logit), data = Lease) Deviance Residuals:...
2005 Aug 05
1
question regarding logit regression using glm
..., 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.fit(x = X, y = Y, weights = weights, start = start, etasta...