-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathREADME.Rmd
68 lines (49 loc) · 2.87 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
warning = FALSE,
message = FALSE,
comment = "#>",
fig.path = "man/figures/",
fig.retina = 3
)
```
# logitr <a href='https://jhelvy.github.io/logitr/'><img src='man/figures/logo.png' align="right" style="height:139px;"/></a>
<!-- badges: start -->
[![CRAN
status](https://www.r-pkg.org/badges/version/logitr)](https://CRAN.R-project.org/package=logitr)
[![Travis build status](https://app.travis-ci.com/jhelvy/logitr.svg?branch=master)](https://app.travis-ci.com/github/jhelvy/logitr)
[![metacran downloads](https://cranlogs.r-pkg.org/badges/grand-total/logitr)](https://cran.r-project.org/package=logitr)
<!-- badges: end -->
logitr: Fast Estimation of Multinomial (MNL) and Mixed Logit (MXL) Models with Preference Space and Willingness to Pay Space [Utility Parameterizations](https://jhelvy.github.io/logitr/articles/utility_models.html)
The latest version includes support for:
- Multinomial logit (MNL) models
- Mixed logit (MXL) models with normal and log-normal parameter distributions.
- Preference space and WTP space utility parameterizations.
- Weighted models to differentially weight individual observations.
- Uncorrelated or correlated heterogeneity covariances for mixed logit models.
- Functions for computing WTP from preference space models.
- Functions for predicting expected probabilities and outcomes for sets of alternatives based on an estimated model.
- A parallelized multistart optimization loop that uses different random starting points in each iteration to search for different local minima (useful for non-convex problems like MXL models or models with WTP space parameterizations).
Mixed logit models are estimated using maximum simulated likelihood based on the algorithms in Kenneth Train's book [*Discrete Choice Methods with Simulation, 2nd Edition (New York: Cambridge University Press, 2009)*](https://eml.berkeley.edu/books/choice2.html).
## Basic Usage
View the [basic usage](https://jhelvy.github.io/logitr/articles/basic_usage.html) page for details on how to use **logitr** to estimate models.
## JSS Article
An associated paper in the *Journal of Statistical Software* about this package is available at
[https://doi.org/10.18637/jss.v105.i10](https://doi.org/10.18637/jss.v105.i10)
## Installation
```{r child="man/rmdchunks/installation.Rmd"}
```
## Author, Version, and License Information
- Author: *John Paul Helveston* https://www.jhelvy.com/
- Date First Written: *Sunday, September 28, 2014*
- License: [MIT](https://github.com/jhelvy/logitr/blob/master/LICENSE.md)
## Citation Information
If you use this package for in a publication, please cite the JSS article associated with it! You can get the citation by typing `citation("logitr")` into R:
```{r}
citation("logitr")
```