Skip to content

Commit

Permalink
add readme
Browse files Browse the repository at this point in the history
  • Loading branch information
SpatLyu committed Dec 1, 2024
1 parent 077d88a commit 3132bdd
Show file tree
Hide file tree
Showing 3 changed files with 98 additions and 0 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
^docs$
^pkgdown$
^\.github$
^README\.Rmd$
52 changes: 52 additions & 0 deletions README.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
---
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

<!-- 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)
[![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)
```
45 changes: 45 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@

<!-- README.md is generated from README.Rmd. Please edit that file -->

# sshicm

<!-- 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)
[![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)
```

0 comments on commit 3132bdd

Please sign in to comment.