tttPlot: Time to Target Plot for one vector

Description Usage Arguments Value References See Also Examples

View source: R/RCode.R

Description

Make a TTTPlot with the information of a vector of times and calcule the theoretical time values (exp) according to work of Ribeiro and Rosseti (2015) <DOI: 10.1007/s11590-014-0760-8>.

Usage

1
tttPlot(timeValue = NULL, tGraph = "TTTPlot", snTheorical = FALSE) 

Arguments

timeValue

A vector with the times

tGraph

A character with the type of Plot: ["QQPlot","TTTPlot"]

snTheorical

A boolean that indicated if need to plot the exp function

Value

xSortVal

is the vector timeValue sorted

probTV

is the accumulated probability distribution for timeValue

References

Riveiro, C.C., & Rosseti I.(2015), tttplots-compare: A perl program to compare time-to-target plots or general runtime distributions of randomized algorithms, Optimization Letters, vol. 9, issue 3, pp. 601-614.<DOI: 10.1007/s11590-014-0760-8>.

See Also

See more in http://link.springer.com/article/10.1007/s11590-014-0760-8

Examples

1
tttPlot(c(1:10))

Example output

$xSortVal
 [1]  1  2  3  4  5  6  7  8  9 10

$probTV
 [1] 0.1363636 0.2272727 0.3181818 0.4090909 0.5000000 0.5909091 0.6818182
 [8] 0.7727273 0.8636364 0.9545455

tttplot documentation built on May 2, 2019, 8:31 a.m.

Related to tttPlot in tttplot...