1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/plot_results.R
\name{plot.ben_results}
\alias{plot.ben_results}
\title{Compare results to past tests}
\usage{
\method{plot}{ben_results}(
x,
test_group = unique(x$test_group),
blas_optimize = is_blas_optimize(x),
log = "y",
...
)
}
\arguments{
\item{x}{The output from a \code{benchmark_*} call.}
\item{test_group}{Default \code{unique(x$test_group)}.
The default behaviour is select the groups from your benchmark results.}
\item{blas_optimize}{Logical. Default The default behaviour
is to compare your results with results that use the same
blas_optimize setting. To use all results, set to \code{NULL}.}
\item{log}{By default the y axis is plotted on the log scale. To change, set the
the argument equal to the empty parameter string, \code{""}.}
\item{...}{Arguments to be passed to other downstream methods.}
}
\description{
Plotting
}
\examples{
data(sample_results)
plot(sample_results, blas_optimize = NULL)
}
|