https://github.com/spatlyu/hsar
Hierarchical Spatial Autoregressive Model
https://github.com/spatlyu/hsar
spatial-econometrics spatial-regression spatial-statistics
Last synced: about 1 month ago
JSON representation
Hierarchical Spatial Autoregressive Model
- Host: GitHub
- URL: https://github.com/spatlyu/hsar
- Owner: SpatLyu
- Created: 2024-12-04T09:28:16.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-04-02T12:17:52.000Z (about 2 months ago)
- Last Synced: 2025-04-02T13:24:44.683Z (about 2 months ago)
- Topics: spatial-econometrics, spatial-regression, spatial-statistics
- Language: C++
- Homepage: https://spatlyu.github.io/HSAR/
- Size: 2.23 MB
- Stars: 8
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
Awesome Lists containing this project
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "##",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# HSAR
[](https://CRAN.R-project.org/package=HSAR)
[](https://CRAN.R-project.org/package=HSAR)
[](https://CRAN.R-project.org/package=HSAR)
[](https://spatlyu.r-universe.dev/HSAR)**Hierarchical Spatial Simultaneous Autoregressive Model (HSAR)**
## Installation
- Install from [CRAN](https://CRAN.R-project.org/package=HSAR) with:
``` r
install.packages("HSAR", dep = TRUE)
```- Install development binary version from [R-universe](https://spatlyu.r-universe.dev/HSAR) with:
``` r
install.packages('HSAR',
repos = c("https://spatlyu.r-universe.dev",
"https://cloud.r-project.org"),
dep = TRUE)
```- Install development source version from [GitHub](https://github.com/spatlyu/HSAR) with:
```r
if (!requireNamespace("devtools")) {
install.packages("devtools")
}
devtools::install_github("SpatLyu/HSAR",
build_vignettes = TRUE,
dep = TRUE)
```