ggplot.parcoords {DescribeDisplay}R Documentation

Create a nice plot for parallel coordinates plot...

Description

Create a nice plot for parallel coordinates plot Create a nice looking plot complete with axes using ggplot.

Usage

ggplot.parcoords(data, absoluteX=FALSE, absoluteY=FALSE, edges=TRUE, ...)

Arguments

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

Author(s)

Barret Schloerke bigbear@iastate.edu

Examples

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))

[Package DescribeDisplay version 0.2.1 Index]