Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mlysy/flexel
Bayesian inference for empirical likelihood models
https://github.com/mlysy/flexel
Last synced: 10 days ago
JSON representation
Bayesian inference for empirical likelihood models
- Host: GitHub
- URL: https://github.com/mlysy/flexel
- Owner: mlysy
- License: gpl-3.0
- Created: 2018-01-23T19:38:32.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2023-09-14T15:27:06.000Z (over 1 year ago)
- Last Synced: 2024-11-12T04:44:31.999Z (2 months ago)
- Language: HTML
- Size: 2.17 MB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flexEL: Flexible Empirical Likelihood Methods for Regression
*Shimeng Huang, Martin Lysy*
---
### Description
Various tools for implementing and calibrating empirical likelihood models. In particular, provides the loglikelihood and gradient functions for arbitrary moment constraint matrices. The inner optimization problem is efficiently computed in C++ using the [**Eigen**](http://eigen.tuxfamily.org/index.php?title=Main_Page) linear algebra library. Also provides functions for implementing right-censored regression models, where the inner optimization is conducted via expectation-maximation. Users may interface with the library through R or directly through C++, as the underlying C++ code is exposes as a standalone header-only library.
### Installation
Install the R package [**devtools**](https://CRAN.R-project.org/package=devtools) and run
```r
devtools::install_github("mlysy/flexEL")
```### Usage
Please see package [vignette](https://htmlpreview.github.io/?https://github.com/mlysy/flexEL/blob/master/doc/flexEL.html). Extended documentation for the C++ library is available [here](https://htmlpreview.github.io/?https://github.com/mlysy/flexEL/blob/master/inst/doxygen/html/index.html).