tfplot.MonteCarloSimulations {dse2}R Documentation

Generate plots of Monte Carlo simulations

Description

Generate plots of Monte Carlo simulations.

Usage

    tfplot(x, start.=NULL, end.=NULL,
    series=seq((dim(x$simulations)[2])), 
    select.simulations=seq(dim(x$simulations)[3]),
    graphs.per.page=5, mar=par()$mar)

Arguments

x The result of MonteCarloSimulations.
start. The starting period for plots. (The default NULL gives the start of the simulations.)
end. The ending period for plots.(The default NULL gives the end of the simulations.)
series The series which should be plotted. The default NULL gives all series.
select.simulations Vector of integers indicating the simulations which should be plotted. The default plots all simulations.
graphs.per.page The number of graphs to put on a page.
mar Plot margins (see par).

Details

This function produces plots of the simulated series. Output graphics can be paused between pages by setting par(ask=TRUE).

Value

None

See Also

distribution.MonteCarloSimulations

Examples

if(is.R()) data("eg1.DSE.data.diff", package="dse1")
model <- estVARXls(eg1.DSE.data.diff)
z <-  MonteCarloSimulations(model)
tfplot(z)

[Package Contents]