https://github.com/feiyoung/ilse
Iterative Least Square Estimation or Full Information Maximum Likelihood Estimation for Linear Regression When Data Include Missing Values.
https://github.com/feiyoung/ilse
fiml ilse linear-regression missing-data
Last synced: 3 months ago
JSON representation
Iterative Least Square Estimation or Full Information Maximum Likelihood Estimation for Linear Regression When Data Include Missing Values.
- Host: GitHub
- URL: https://github.com/feiyoung/ilse
- Owner: feiyoung
- Created: 2018-04-26T08:13:29.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-12-04T03:16:56.000Z (about 2 years ago)
- Last Synced: 2025-10-22T03:44:48.099Z (3 months ago)
- Topics: fiml, ilse, linear-regression, missing-data
- Language: R
- Homepage:
- Size: 1.09 MB
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ILSE
=========================================================================
[](https://cran.r-project.org/package=ILSE)
[](https://cran.r-project.org/package=ILSE)
[](https://cran.r-project.org/package=ILSE)
Linear Regression by Iterative Least Square Estimation When Covariates Include Missing Values. In *ILSE* package, we also provide Full Information Maximum Likelihood for Linear Regression *fimlreg* that can handle missing Covariates or missing Response variables.
Please see our new paper for model details:
[Huazhen Lin, Wei Liu, & Wei Lan (2021). Regression Analysis with individual-specific patterns of missing covariates. Journal of Business & Economic Statistics, 39(1), 179-188.](https://www.tandfonline.com/doi/abs/10.1080/07350015.2019.1635486?needAccess=true&journalCode=ubes20)
# Installation
To install the the packages 'ILSE' from 'Github', firstly, install the 'remotes' package.
```{Rmd}
install.packages("remotes")
remotes::install_github("feiyoung/ILSE")
```
Or install the the packages "ILSE" from 'CRAN'
```{Rmd}
install.packages("ILSE")
```
## Usage
For usage examples and guided walkthroughs, check the `vignettes` directory of the repo.
* [ILSE for simulated data](https://feiyoung.github.io/ILSE/articles/ILSE.Simu.html)
* [ILSE for a toy real data](https://feiyoung.github.io/ILSE/articles/ILSE.Realdata.html)
# Website of ILSE package
We set up a package website to illustrate the usage of this package. For examples of typical ILSE usage, please see our [Package Website](https://feiyoung.github.io/ILSE/index.html) for a demonstration and overview of the functions included in ILSE.