Usage
plot_ParamsPerIter(params,...)## S3 method for class 'default':
plot_ParamsPerIter(params, param.names=colnames(params),
main=NULL, xlab="Number of evaluations", nrows="auto", cex=0.5,
cex.main=1.2,cex.axis=1.7,cex.lab=1.5, col=rainbow(ncol(params)),
lty=3, verbose=TRUE, ..., do.png=FALSE, png.width=1500,
png.height=900, png.res=90, png.fname="Params_ValuePerRun.png" )
## S3 method for class 'matrix':
plot_ParamsPerIter(params, param.names=colnames(params),
main=NULL, xlab="Number of evaluations", nrows="auto", cex=0.5,
cex.main=1.2,cex.axis=1.7,cex.lab=1.5, col=rainbow(ncol(params)),
lty=3, verbose=TRUE, ..., do.png=FALSE, png.width=1500,
png.height=900, png.res=90, png.fname="Params_ValuePerRun.png" )
## S3 method for class 'data.frame':
plot_ParamsPerIter(params, param.names=colnames(params),
main=NULL, xlab="Number of evaluations", nrows="auto", cex=0.5,
cex.main=1.2,cex.axis=1.7,cex.lab=1.5, col=rainbow(ncol(params)),
lty=3, verbose=TRUE, ..., do.png=FALSE, png.width=1500,
png.height=900, png.res=90, png.fname="Params_ValuePerRun.png" )
Arguments
params
matrix or data.frame with the parameter values, where each row represent a different parameter set, and each column represent the value of a different model's parameter
param.names
character vector, names to be used for each model's parameter in params
(by default its column names)
main
character, title for the plot
xlab
character, title for the x axis. See plot
nrows
numeric, number of rows to be used in the plotting window. If nrows
is set to auto, the number of rows is automatically computed depending on the number of columns of params
cex
numeric, magnification for text and symbols relative to the default. See par
cex.main
numeric, magnification to be used for main titles relative to the current setting of cex
. See par
cex.axis
numeric, magnification to be used for axis annotation relative to the current setting of cex
. See par
cex.lab
numeric, magnification to be used for x and y labels relative to the current setting of cex
. See par
col
specification for the default plotting colour. See par
verbose
logical, if TRUE, progress messages are printed
...
further arguments passed to the plot
function or from other methods.
do.png
logical, indicates if all the figures have to be saved into PNG files instead of the screen device
png.width
OPTIONAL. Only used when do.png=TRUE
numeric with the width of the device. See png
png.height
OPTIONAL. Only used when do.png=TRUE
numeric with the height of the device. See png
png.res
OPTIONAL. Only used when do.png=TRUE
numeric with the nominal resolution in ppi which will be recorded in the PNG file, if a positive integer of the device. See png
png.fname
OPTIONAL. Only used when do.png=TRUE
character, with the filename used to store the PNG file