R Under development (unstable) (2023-11-26 r85638 ucrt) -- "Unsuffered Consequences" Copyright (C) 2023 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > source("testthat/helper-common.R") > pdf(file = "eafplot.pdf", title = "eafplot.pdf", width = 6, height = 6) > data(gcp2x2) > tabucol <- subset(gcp2x2, alg != "TSinN1") > tabucol$alg <- tabucol$alg[drop = TRUE] > eafplot(time + best ~ run, data = tabucol, subset = tabucol$inst == "DSJC500.5") > > eafplot(time + best ~ run | inst, groups = alg, data = gcp2x2) > > eafplot(time + best ~ run | inst, groups = alg, data = gcp2x2, percentiles = c(0, + 50, 100), include.extremes = TRUE, cex = 1.4, lty = c(2, 1, 2), lwd = c(2, 2, + 2), col = c("black", "blue", "grey50")) Warning messages: 1: In plot.window(...) : "include.extremes" is not a graphical parameter 2: In plot.xy(xy, type, ...) : "include.extremes" is not a graphical parameter 3: In title(...) : "include.extremes" is not a graphical parameter 4: In plot.window(...) : "include.extremes" is not a graphical parameter 5: In plot.xy(xy, type, ...) : "include.extremes" is not a graphical parameter 6: In title(...) : "include.extremes" is not a graphical parameter > > dev.off() null device 1 > > proc.time() user system elapsed 0.42 0.03 0.45