plot.density.mcmcSTmodel {SpatioTemporal} | R Documentation |
density.mcmcSTmodel
objectplot
method for class density.mcmcSTmodel
.
Plots results from density.mcmcSTmodel
.
## S3 method for class 'density.mcmcSTmodel' plot(x, y = 1, add = FALSE, norm.col = 0, main = NULL, ylim = NULL, ...)
x |
|
y |
Name/index of parameter for which to plot the density. |
add |
Add to existing plot using |
norm.col |
Add the Gaussian density using a line with colour
|
main |
Parameter passed as |
ylim |
Additional parameters passed to
|
... |
Additional parameters passed to
|
Nothing
Johan Lindstrom
Other mcmcSTmodel methods: MCMC.STmodel
,
density.mcmcSTmodel
,
plot.mcmcSTmodel
,
print.mcmcSTmodel
,
print.summary.mcmcSTmodel
,
summary.mcmcSTmodel
##load estimation results data(est.mesa.model) ##and MCMC results instead data(MCMC.mesa.model) ##compute density estimates for the results, and use the Gaussian approximation ##based on Fischer information as reference. dens <- density(MCMC.mesa.model, estSTmodel=est.mesa.model) ##all the estimated densities str(dens,1) ##or results for one paramter dens[[1]] ##plot density functions plot(dens) ##for a different paramter, along with Gaussian approx plot(dens, 3, norm.col="red") ##all covariance parameters par(mfrow=c(3,3),mar=c(4,4,2.5,.5)) for(i in 9:17){ plot(dens, i, norm.col="red") }