package experiments
Ordering
- Alphabetic
Visibility
- Public
- Protected
Value Members
- object ConfidenceIntervals
Object to calculate mean and confidence interval, given an array of data.
- object Experiments
Code to support experiments.
- 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)