-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
75 lines (56 loc) · 2.41 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
---
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%"
)
```
# GD <a href="https://ausgis.github.io/GD/"><img src="man/figures/logo.png" align="right" height="139" alt="GD website" /></a>
<!-- badges: start -->
[![CRAN](https://www.r-pkg.org/badges/version/GD)](https://CRAN.R-project.org/package=GD)
[![Downloads_All](https://badgen.net/cran/dt/GD?color=orange)](https://CRAN.R-project.org/package=GD)
[![Downloads](https://cranlogs.r-pkg.org/badges/GD)](https://CRAN.R-project.org/package=GD)
[![R-universe](https://ausgis.r-universe.dev/badges/GD)](https://ausgis.r-universe.dev/GD)
[![DOI](https://ausgis.github.io/badges/gos_paper.svg)](https://doi.org/10.1080/15481603.2020.1760434)
<!-- badges: end -->
**Geographical Detectors for Assessing Spatial Factors**
Please cite **GD** as:
> Song, Y., Wang, J., Ge, Y. & Xu, C. (2020) An optimal parameters-based geographical detector model enhances geographic characteristics of explanatory variables for spatial heterogeneity analysis: Cases with different types of spatial data,
> *GIScience & Remote Sensing*,*57*(5), 593-610.
> <https://doi.org/10.1080/15481603.2020.1760434>.
A BibTeX entry for LaTeX users is:
``` bib
@article{Song2020opgd,
author = {Yongze Song, Jinfeng Wang, Yong Ge and Chengdong Xu},
title = {An optimal parameters-based geographical detector model enhances geographic characteristics of explanatory variables for spatial heterogeneity analysis: cases with different types of spatial data},
journal = {GIScience \& Remote Sensing},
volume = {57},
number = {5},
pages = {593--610},
year = {2020},
month = {05},
publisher = {Taylor \& Francis},
doi = {10.1080/15481603.2020.1760434},
URL = {https://doi.org/10.1080/15481603.2020.1760434}
}
```
## Installation
- Install from [CRAN](https://CRAN.R-project.org/package=GD) with:
``` r
install.packages("GD")
```
- Install development binary version from [R-universe](https://ausgis.r-universe.dev/GD) with:
``` r
install.packages("GD",repos = c("https://ausgis.r-universe.dev",
"https://cloud.r-project.org"))
```
- Install development source version from [GitHub](https://github.com/ausgis/GD) with:
``` r
# install.packages("devtools")
devtools::install_github("ausgis/GD",build_vignettes = TRUE)
```