beplot0: Benchmark experiment plot

Description Usage Arguments Value References See Also

View source: R/algperf-beplot0.R

Description

The benchmark experiment plot visualizes each benchmark experiment run. The x-axis is a podium with as many places as algorithms. For each benchmark run, the algorithms are sorted according to their performance values and a dot is drawn on the corresponding place. To visualize the count of an algorithm on a specific position, a bar plot is shown for each of podium places.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
beplot0(x, ...)

## S3 method for class 'AlgorithmPerformance'
beplot0(x, xlab = NULL, ylab = NULL,
  lines.show = FALSE, lines.alpha = 0.2, lines.lwd = 1, lines.col = col,
  dots.pch = 19, dots.cex = 1, places.lty = 2, places.col = 1,
  legendfn = function(algs, cols) {     legend("topleft", algs, lwd = 1, col =
  cols, bg = "white") }, ...)

## S3 method for class 'matrix'
beplot0(x, col = 1:ncol(x), xlab = NULL, ylab = NULL,
  lines.show = FALSE, lines.alpha = 0.2, lines.lwd = 1, lines.col = col,
  dots.pch = 19, dots.cex = 1, places.lty = 2, places.col = 1,
  legendfn = function(algs, cols) {     legend("topleft", algs, lwd = 1, col =
  cols, bg = "white") }, ...)

Arguments

x

A matrix or AlgorithmPerformance object

xlab

A title for the x axis

ylab

A title for the y axis

lines.show

Connect dots of same benchmark runs

lines.col

Line color

lines.alpha

Alpha value of the line color

lines.lwd

Line width

dots.pch

Dot symbol

dots.cex

Dot symbol expansion

places.lty

Type of separator line between podium places

places.col

Color of separator line between podium places

legendfn

Function which draws a legend

...

Ignored

col

Colors

Value

Return value of underlying beplot0.matrix; currently undefined

References

See Eugster and Leisch (2008) and Eugster et al. (2008) in citation("benchmark").

See Also

Other algperf.visualization: boxplot.AlgorithmPerformance, densityplot, densityplot.AlgorithmPerformance, stripchart.AlgorithmPerformance; bsgraph0, bsgraph0.dist, bsgraph0.graphNEL; bsplot0, bsplot0.matrix, bsplot0.relation_ensemble


benchmark documentation built on May 30, 2017, 5:20 a.m.

Related to beplot0 in benchmark...