forked from tidyverse/ggplot2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathggpcp.Rd
39 lines (35 loc) · 1013 Bytes
/
ggpcp.Rd
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
\name{ggpcp}
\alias{ggpcp}
\title{Make a parallel coordinates plot.}
\usage{
ggpcp(data, vars = names(data), ...)
}
\arguments{
\item{data}{data frame}
\item{vars}{variables to include in parallel coordinates
plot}
\item{...}{other arguments passed on plot creation}
}
\description{
One way to think about a parallel coordinates plot, is as
plotting the data after it has been transformed to gain a
new variable. This function does this using
\code{\link[reshape2]{melt}}.
}
\details{
This gives us enormous flexibility as we have separated
out the type of drawing (lines by tradition) and can now
use any of the existing geom functions. In particular
this makes it very easy to create parallel boxplots, as
shown in the example.
}
\examples{
\dontrun{
ggpcp(mtcars) + geom_line()
ggpcp(mtcars, vars=names(mtcars[2:6])) + geom_line()
ggpcp(mtcars) + geom_boxplot(aes(group=variable))
p <- ggpcp(mtcars, vars=names(mtcars[2:6]))
p + geom_line()
p + geom_line(aes(colour=mpg))
}
}