ThinandAnalyse: Thin MCMC samples and analyse to construct geoprofile

Description Usage Arguments Details Value Author(s) See Also Examples

Description

This function takes the posteriors obtained by the MCMC and thins them to remove autocorrelation as determined by the user. The plots produced by RunMCMC include and auto correlation plot. This can be used to asses the degree of thinning needed. After this step, the remaining samples are used to construct a geoprofile.

Usage

1
ThinandAnalyse(thinning = 100)

Arguments

thinning

A value representing the degree of thinning. 100 would keep one value for every 100 samples.

NOTE: if you remove too many samples when thinning the number of smaple left to construct the geoprofile will be small, introducing further error. If autocorrelation is large it is recommended that more samples are taken when using RunMCMC.

Details

The steps in this code are the following:

1) The dataset is thinned 2) The geoprofile is constructed from the remaining posterior samples.

NOTE: This step involves a time intenseive operation (summing multiple matricies together) which is affected by: the number of remaing samples after thinning and the size of the geoprofile being constructed (default gridsize = 300). Increasing the parameter gridsize will result in a higher resolution geoprofile but will make this step take longer, potentially much longer.

Value

Geoprofile

The final Geoprofile produced by the model, a matrix.

hitscoremat

The matrix of hit score values produced by the model, essentialy an ordered search pattern.

Author(s)

MD, Stevenson

See Also

RunMCMC

Examples

 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
## Not run: 

### Load in data
### Assign a matrix of lon lat values to mydata

LoadData(Data=mydata)

### Load the model and graphic parameters (using defaults here)

ModelParameters()
GraphicParameters()

### Create the prior and maps

CreateMaps(PlotPrior = T)

### Run the MCMC

RunMCMC()

### Thin and produce the geoprofile

ThinandAnalyse(thinning = 100)


### Thin the samples further due to autocorrelation

ThinandAnalyse(thinning = 500)


## End(Not run)

stevenlecomber/Rgeoprofile-1.1.0 documentation built on May 30, 2019, 4:46 p.m.