-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
56 lines (43 loc) · 1.81 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
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "##",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# sshicm <a href="https://stscl.github.io/sshicm/"><img src="man/figures/logo.png" align="right" height="250" alt="sshicm website" /></a>
<p align="right"; style="font-size:11px">logo by Sibyl</p>
<!-- badges: start -->
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-cyan.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[![CRAN](https://www.r-pkg.org/badges/version/sshicm)](https://CRAN.R-project.org/package=sshicm)
[![DownloadsAll](https://badgen.net/cran/dt/sshicm?color=orange)](https://CRAN.R-project.org/package=sshicm)
[![DownloadsMonth](https://cranlogs.r-pkg.org/badges/sshicm)](https://CRAN.R-project.org/package=sshicm)
[![R-universe](https://stscl.r-universe.dev/badges/sshicm?color=cyan)](https://stscl.r-universe.dev/sshicm)
<!-- badges: end -->
**Information Consistency-Based Measures for Spatial Stratified Heterogeneity**
## Installation
- Install from [CRAN](https://CRAN.R-project.org/package=sshicm) with:
``` r
install.packages("sshicm", dep = TRUE)
```
- Install binary version from [R-universe](https://stscl.r-universe.dev/sshicm) with:
``` r
install.packages("sshicm",
repos = c("https://stscl.r-universe.dev",
"https://cloud.r-project.org"),
dep = TRUE)
```
- Install from source code on [GitHub](https://github.com/stscl/sshicm) with:
```r
if (!requireNamespace("devtools")) {
install.packages("devtools")
}
devtools::install_github("stscl/sshicm",
build_vignettes = TRUE,
dep = TRUE)
```