ggplot.parcoords {DescribeDisplay} | R Documentation |
Create a nice plot for parallel coordinates plot Create a nice looking plot complete with axes using ggplot.
ggplot.parcoords(data, absoluteX=FALSE, absoluteY=FALSE, edges=TRUE, ...)
data |
plot to display |
absoluteX |
make the sections proportional horizontally to eachother |
absoluteY |
make the sections proportional vertically to eachother |
edges |
boolean value to print edges. Defaults to TRUE. |
... |
arguments passed to the grob function |
Barret Schloerke bigbear@iastate.edu
print(ggplot(dd_example("pcp"))) print(ggplot(dd_example("pcp-ash"))) print(ggplot(dd_example("pcp-ash"), edges = FALSE)) print(ggplot(dd_example("pcp-ash"),absoluteY = TRUE, edges = FALSE)) print(ggplot(dd_example("pcp-texture"))) print(ggplot(dd_example("pcp-texture"), edges =FALSE)) print(ggplot(dd_example("pcp-texture"),absoluteY=TRUE, edges =FALSE))