plotStats
¶
Plot statistics trace vs iteration
Description¶
Given a data frame read in by readStatsFile, plot one of the columns vs iteration number.
Usage¶
plotStats(x, stat, add = FALSE, xlim = NULL, ylim = NULL,
xlab = "Iter", ylab = stat, ...)
Arguments¶
Argument |
Description |
---|---|
|
A data.frame read in by readStatsFile. Alternatively, if x is type character, can be the name of the stats file. |
|
A character string naming the column of x to plot |
|
If FALSE, create a new plot. Otherwise add to current plot |
|
The x-axis range (only used when add==FALSE). Taken from the range of data if not given. |
|
The y-axis range (only used when add==FALSE). Taken from the range of data if not given |
|
The label for x-xais (only used when add=FALSE) |
|
The label for y-axis (only used when add=FALSE) |
|
Other options to pass to plot function |