Skip to content

Commit

Permalink
Added support for multinomial baseline logit model with random effects.
Browse files Browse the repository at this point in the history
  • Loading branch information
melff committed Jan 7, 2017
1 parent c311eb1 commit 41c9bc7
Show file tree
Hide file tree
Showing 5 changed files with 303 additions and 102 deletions.
18 changes: 12 additions & 6 deletions pkg/DESCRIPTION
Expand Up @@ -5,13 +5,19 @@ Version: 0.5
Date: 2017-01-05
Author: Martin Elff
Maintainer: Martin Elff <mclogit@elff.eu>
Description: Specification and estimation of conditional logit models of binary responses and multinomial counts is provided,
with or without alternative-specific random effects.
The current implementation of the estimator for random effects variances uses a Laplace approximation (or PQL)
approach and thus should be used only if groups sizes are large.
Description: Specification and estimation of conditional logit models of binary
responses and multinomial counts is provided, with or without alternative-
specific random effects. The current implementation of the estimator for random
effects variances uses a Laplace approximation (or PQL) approach and thus should
be used only if groups sizes are large.
License: GPL-2
Depends: stats, Matrix
Imports: memisc, methods
Depends:
stats,
Matrix
Imports:
memisc,
methods
LazyLoad: Yes
URL: http://www.elff.eu/software/mclogit/,http://github.com/melff/mclogit/
BugReports: http://github.com/melff/mclogit/issues
RoxygenNote: 5.0.1
5 changes: 4 additions & 1 deletion pkg/NAMESPACE
Expand Up @@ -33,7 +33,10 @@ S3method(fitted,mblogit)
S3method(predict,mblogit)
S3method(weights,mblogit)


S3method(print,mmclogit)
S3method(summary,mmclogit)
S3method(print,summary.mmclogit)

S3method(print,mmblogit)
S3method(summary,mmblogit)
S3method(print,summary.mmblogit)
2 changes: 2 additions & 0 deletions pkg/R/getSummary-mblogit.R
Expand Up @@ -78,3 +78,5 @@ getSummary.mblogit <- function(obj,
xlevels = obj$xlevels,
sumstat=sumstat)
}

getSummary.mmblogit <- getSummary.mblogit

0 comments on commit 41c9bc7

Please sign in to comment.