search for: earlytermination

Displaying 3 results from an estimated 3 matches for "earlytermination".

2005 Aug 08
1
Help with "non-integer #successes in a binomial glm"
...e weights sum up to one. 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 +...
2005 Aug 03
4
R CMD build error
Dear list, I try to update the prabclus package. R CMD check works nicely, no warnings, good results in all tests. However, building the package fails: ginkgo:/disk5/home/chrish/RAusw/libsrc R CMD build prabclus * checking for file 'prabclus/DESCRIPTION' ... OK * preparing 'prabclus': * checking whether 'INDEX' is up-to-date ... OK * removing junk files * building
2005 Aug 05
1
question regarding logit regression using glm
...glm.fit(x = X, y = Y, weights = 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 conv...