-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathplotScatter3d.Rd
More file actions
59 lines (55 loc) · 1.74 KB
/
Copy pathplotScatter3d.Rd
File metadata and controls
59 lines (55 loc) · 1.74 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/PA.EMOA.plotScatter3d.R
\name{plotScatter3d}
\alias{plotScatter3d}
\title{Visualize three-objective Pareto-front approximations}
\usage{
plotScatter3d(
df,
obj.cols = c("f1", "f2", "f3"),
max.in.row = 4L,
package = "scatterplot3d",
...
)
}
\arguments{
\item{df}{[\code{data.frame}]\cr
Data.frame with columns at least \code{obj.cols}, \dQuote{prob} and \dQuote{algorithm}.}
\item{obj.cols}{[\code{character(>= 3)}]\cr
Column names of the objective functions.
Default is \code{c("f1", "f2", "f3")}.}
\item{max.in.row}{[\code{integer(1)}]\cr
Maximum number of plots to be displayed side by side in a row.
Default is 4.}
\item{package}{[\code{character(1L)}]\cr
Which package to use for 3d scatterplot generation?
Possible choices are \dQuote{scatterplot3d}, \dQuote{plot3D}, \dQuote{plot3Drgl}
or \dQuote{plotly}.
Default is \dQuote{scatterplot3d}.}
\item{...}{[any]\cr
Further arguments passed down to scatterplot function.}
}
\value{
Nothing
}
\description{
Given a data frame with the results of (multiple) runs of (multiple)
different three-objective optimization algorithms on (multiple) problem instances
the function generates 3D scatterplots of the obtained Pareto-front approximations.
}
\seealso{
Other EMOA performance assessment tools:
\code{\link{approximateNadirPoint}()},
\code{\link{approximateRefPoints}()},
\code{\link{approximateRefSets}()},
\code{\link{computeDominanceRanking}()},
\code{\link{emoaIndEps}()},
\code{\link{makeEMOAIndicator}()},
\code{\link{niceCellFormater}()},
\code{\link{normalize}()},
\code{\link{plotDistribution}()},
\code{\link{plotFront}()},
\code{\link{plotScatter2d}()},
\code{\link{toLatex}()}
}
\concept{EMOA performance assessment tools}