Description Usage Arguments Value See Also Examples
View source: R/fitSpectraMCMC.R
Fit the model using Markov chain Monte Carlo.
1 | fitSpectraMCMC(wl, spc, peakWL, lPriors, sd_mh, niter = 10000, nchains = 4)
|
wl |
Vector of |
spc |
|
peakWL |
Vector of locations for each peak (cm^-1) |
lPriors |
List of hyperparameters for the prior distributions. |
sd_mh |
Vector of |
niter |
number of MCMC iterations per chain. |
nchains |
number of concurrent MCMC chains. |
a List containing MCMC samples for the model parameters:
amplitude
niter * nchains * npeaks
Array of amplitudes.
scale
niter * nchains * npeaks
Array of scale parameters.
sigma
niter * nchains
Matrix of standard deviations.
n_acc
The number of RWMH proposals that were accepted.
1 2 3 4 5 6 7 8 9 10 11 12 13 | wavenumbers <- seq(200,600,by=10)
spectra <- matrix(nrow=1, ncol=length(wavenumbers))
peakLocations <- c(300,500)
peakAmplitude <- c(10000,4000)
peakScale <- c(10, 15)
signature <- weightedLorentzian(peakLocations, peakScale, peakAmplitude, wavenumbers)
baseline <- 1000*cos(wavenumbers/200) + 2*wavenumbers
spectra[1,] <- signature + baseline + rnorm(length(wavenumbers),0,200)
lPriors <- list(scale.mu=log(11.6) - (0.4^2)/2, scale.sd=0.4, bl.smooth=10^11, bl.knots=20,
amp.mu=5000, amp.sd=5000, noise.sd=200, noise.nu=4)
rw_bw <- c(100, 100, 2, 2)
result <- fitSpectraMCMC(wavenumbers, spectra, peakLocations, lPriors, rw_bw, 500)
result$n_acc
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.