Parallel coordinates plot of a set of provided configurations. Each line in the plot represents a configuration. The parameters to be included in the plot can be selected with the param_names argument. Additionally, the maximum number of parameters to be displayed in one plot. A list of plots is returned by this function in several plots are required to display the selected data.
plot_configurations(
configurations,
parameters,
param_names = parameters$names,
by_n_param = NULL,
filename = NULL
)
Arguments
Data frame, configurations in irace
format (example: configurations = iraceResults$allConfigurations
)
(list()
) Parameter space in irace format. See the function irace::readParameters()
.
(character()
) Parameters to be included in the plot. Example: c("algorithm","alpha","rho","q0","rasrank")
.
Numeric (optional), maximum number of parameters to be displayed
(character(1)
) File name to save the plot, for example "~/path/example/filename.png"
.
parallel coordinates plot
ExamplesiraceResults <- read_logfile(system.file(package="irace", "exdata",
"irace-acotsp.Rdata", mustWork = TRUE))
parameters <- iraceResults$scenario$parameters
plot_configurations(iraceResults$allConfigurations[iraceResults$iterationElites,],
parameters = parameters)
plot_configurations(iraceResults$allConfigurations[iraceResults$iterationElites,],
parameters = parameters,
param_names = c("algorithm", "alpha", "rho", "q0", "rasrank"))
plot_configurations(iraceResults$allConfigurations[iraceResults$iterationElites,],
parameters = parameters, by_n_param = 5)
#> [[1]]
#>
#> [[2]]
#>
#> [[3]]
#>
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4