Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

parallel coord plot ggplot2 deprecated?

When i try to make a parallel coordinate in ggplot2, i get the message that it is deprecated:

require(ggplot2)
ggpcp(mtcars) + geom_line()

Warning message: 'ggpcp' is deprecated. See help("Deprecated")

however, the ggplot documentation did not say anything about this: http://docs.ggplot2.org/current/ggpcp.html.

is there a new pcp function somewhere?

like image 743
Henk Avatar asked Nov 02 '12 14:11

Henk


1 Answers

Migrated to GGally. E.g.:

require(GGally)
ggparcoord(mtcars, columns = c(1, 5:10)) + geom_line()
like image 157
metasequoia Avatar answered Oct 07 '22 00:10

metasequoia