Displaying 2 results from an estimated 2 matches for "landlordhasoption".
2005 Aug 08
1
Help with "non-integer #successes in a binomial glm"
...ut
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:
Min 1Q Median 3Q Max
-0.583...
2005 Aug 05
1
question regarding logit regression using glm
...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, etastart =
etastart,
2: fitted probabilities nu...