---
title: "ILSE"
output: rmarkdown::html_vignette
vignette: >
  %\VignetteIndexEntry{ILSE}
  %\VignetteEngine{knitr::rmarkdown}
  %\VignetteEncoding{UTF-8}
---

```{r, include = FALSE}
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)
```
## Install the ILSE
This vignette provides an introduction to the R package `ILSE`, where the function `ILSE` implements the model `ILSE`, Linear Regression by Iterative Least Square Estimation (ILSE) When Covariates Include Missing Values.
The package can be installed with the command from [Github](https://github.com/feiyoung/ILSE):

`library(remotes)`

`remotes::install_github("feiyoung/ILSE")`

or install from [CRAN](https://cran.r-project.org/)

`install.packages("ILSE")`


```{r setup}
library(ILSE)
```