Skip to content
Snippets Groups Projects
Commit 0a76ea6f authored by Raimon Tolosana-Delgado's avatar Raimon Tolosana-Delgado
Browse files

nice readme.rd

parent 8e851365
No related branches found
No related tags found
No related merge requests found
---
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%"
)
```
# gmGeostats
<!-- badges: start -->
<!-- badges: end -->
The goal of gmGeostats is to provide a unified framework for the geostatistical analysis of multivariate data from any statistical scale, e.g. data honoring a ratio scale, or with constraints such as spherical or compositional data.
This R package offers support for geostatistical analysis of multivariate data, in particular data with restrictions, e.g. positive amounts data, compositional data, distributional data, microstructural data, etc. It includes descriptive analysis and modelling for such data, both from a two-point Gaussian perspective and multipoint perspective. The package is devised for supporting 3D, multi-scale and large data sets and grids. This is a building block of the suite of HIF geometallurgical software.
## Installation
You can install the released version of gmGeostats from [CRAN](https://CRAN.R-project.org) with:
``` r
install.packages("gmGeostats")
```
## Example
Read the [./vignettes/gmGeostats.html](vignette) for an extended scheme of the package functionality. The fundamental steps are:
```{r example}
## load the package and its dependencies
library(gmGeostats)
## read your data, identify coordinates and sets of variables
data("Windarling") # use here some read*(...) function
colnames(Windarling)
X = Windarling[,c("Easting", "Northing")]
Z = Windarling[,c(9:12,14,16)]
## declare the scale of each set of variables
Zc = compositions::acomp(Z) # other scales will come in the future
## pack the data in a gmSpatialModel object using an appropriate
# make.** function
gsm = make.gmCompositionalGaussianSpatialModel(
data = Zc, coords = X, V = "alr", formula = ~1
)
```
From this point on, what you do depends on which model do you have in mind. Here we briefly cover the case of a Gaussian model, though a multipoint approach can also be tackled with function `make.gmCompositionalMPSSpatialModel()` providing a training image as model. See [./vignettes/gmGeostats.html](vignette) for details.
A structural analysis can be obtained in the following steps
```{r structural}
## empirical variogram
vge = variogram(gsm)
## model specification
vm = gstat::vgm(model="Sph", range=25, nugget=1, psill=1)
# you can use gstat specifications!
## variogram fit
gsm.f = fit_lmc(v = vge, g = gsm, model = vm)
## plot
variogramModelPlot(vge, model = gsm.f)
```
This model can then be validated, interpolated and/or simulated. The workflow for each of these tasks is always:
1.- define some method parameters with a tailored function, e.g. `LeaveOneOut()` for validation, `KrigingNeighbourhood()` for cokriging or `SequentialSimulation()` for sequential Gaussian Simulation
2.- if desired, define some new locations where to interpolate or simulate, using `expand.grid()` or `sp::GridTopology()` or similar
3.- call an appropriate function, specifying the model, potential new data, and the parameters created in the preceding steps; e.g. `validate(model, pars)` for validation, or `predict(model, newdata, pars)` for interpolation or validation
More information can be found in [./vignettes/gmGeostats.html](vignette).
\ No newline at end of file
# gmGeostats: Geostatistics for Compositional Analysis with R
This R package offers support for geostatistical analysis of multivariate data, in particular data with restrictions, e.g. positive amounts data, compositional data, distributional data, microstructural data, etc. It includes descriptive analysis and modelling for such data, both from a two-point Gaussian perspective and multipoint perspective. The package is devised for supporting 3D, multi-scale and large data sets and grids. This is a building block of the suite of HIF geometallurgical software.
<!-- README.md is generated from README.Rmd. Please edit that file -->
## More information
# gmGeostats
Read the [./vignettes/gmGeostats.html](vignette) for a scheme of the package functionality.
<!-- badges: start -->
<!-- badges: end -->
The goal of gmGeostats is to provide a unified framework for the
geostatistical analysis of multivariate data from any statistical scale,
e.g. data honoring a ratio scale, or with constraints such as spherical
or compositional data.
This R package offers support for geostatistical analysis of
multivariate data, in particular data with restrictions, e.g. positive
amounts data, compositional data, distributional data, microstructural
data, etc. It includes descriptive analysis and modelling for such data,
both from a two-point Gaussian perspective and multipoint perspective.
The package is devised for supporting 3D, multi-scale and large data
sets and grids. This is a building block of the suite of HIF
geometallurgical software.
## Installation
You can install the released version of gmGeostats from
[CRAN](https://CRAN.R-project.org) with:
``` r
install.packages("gmGeostats")
```
## Example
Read the [./vignettes/gmGeostats.html](vignette) for an extended scheme
of the package functionality. The fundamental steps are:
``` r
## load the package and its dependencies
library(gmGeostats)
#> Warning: replacing previous import 'compositions::fit.lmc' by 'gstat::fit.lmc'
#> when loading 'gmGeostats'
#> Welcome to 'gmGeostats', a package for multivariate geostatistical analysis.
#> Note: use 'fit_lmc' instead of fit.lmc
## read your data, identify coordinates and sets of variables
data("Windarling") # use here some read*(...) function
colnames(Windarling)
#> [1] "Hole_id" "Sample.West" "Sample.East" "West" "East"
#> [6] "Easting" "Northing" "Lithotype" "Fe" "P"
#> [11] "SiO2" "Al2O3" "S" "Mn" "CL"
#> [16] "LOI"
X = Windarling[,c("Easting", "Northing")]
Z = Windarling[,c(9:12,14,16)]
## declare the scale of each set of variables
Zc = compositions::acomp(Z) # other scales will come in the future
## pack the data in a gmSpatialModel object using an appropriate
# make.** function
gsm = make.gmCompositionalGaussianSpatialModel(
data = Zc, coords = X, V = "alr", formula = ~1
)
```
From this point on, what you do depends on which model do you have in
mind. Here we briefly cover the case of a Gaussian model, though a
multipoint approach can also be tackled with function
`make.gmCompositionalMPSSpatialModel()` providing a training image as
model. See [./vignettes/gmGeostats.html](vignette) for details.
A structural analysis can be obtained in the following steps
``` r
## empirical variogram
vge = variogram(gsm)
## model specification
vm = gstat::vgm(model="Sph", range=25, nugget=1, psill=1)
# you can use gstat specifications!
## variogram fit
gsm.f = fit_lmc(v = vge, g = gsm, model = vm)
## plot
variogramModelPlot(vge, model = gsm.f)
```
<img src="man/figures/README-structural-1.png" width="100%" />
This model can then be validated, interpolated and/or simulated. The
workflow for each of these tasks is always:
1.- define some method parameters with a tailored function, e.g.
`LeaveOneOut()` for validation, `KrigingNeighbourhood()` for cokriging
or `SequentialSimulation()` for sequential Gaussian Simulation 2.- if
desired, define some new locations where to interpolate or simulate,
using `expand.grid()` or `sp::GridTopology()` or similar 3.- call an
appropriate function, specifying the model, potential new data, and the
parameters created in the preceding steps; e.g. `validate(model, pars)`
for validation, or `predict(model, newdata, pars)` for interpolation or
validation
More information can be found in
[./vignettes/gmGeostats.html](vignette).
man/figures/README-structural-1.png

56.9 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment