Packages

p

ox.gavin

experiments

package experiments

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Value Members

  1. object ConfidenceIntervals

    Object to calculate mean and confidence interval, given an array of data.

  2. object Experiments

    Code to support experiments.

  3. object Graphs

    Code for producing graphs, using PGFPlots.

    Code for producing graphs, using PGFPlots. See PGFPlots manual.

    Typical usage might be something like the following.

    val options =
      Array[String](
        "title = Comparison of linearizability testers on a queue",
        "xlabel = Number of operations per run",
        "ylabel = Time (s)",
        "log basis x=2", "log basis y = 10",
        "legend pos = north west",
        "height = 0.9\\textheight", "width = 0.9\\textwidth"
      )
    val graphString =
      Graphs.makeLogXGraph(options, testersNames, opsNumbers, results)
    Graphs.writeStandAloneFile("queue.tex", graphString)

Ungrouped