并行coord plot ggplot2已弃用?

时间:2012-11-02 14:10:44

标签: r ggplot2 parallel-coordinates

当我尝试在ggplot2中创建并行坐标时,我收到不推荐使用的消息:

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

警告讯息: 'ggpcp'已弃用。 请参阅帮助(“已弃用”)

然而,ggplot文档没有说明这一点:http://docs.ggplot2.org/current/ggpcp.html

某个地方有新的pcp功能吗?

1 个答案:

答案 0 :(得分:7)

迁移到GGally。 E.g:

require(GGally)
ggparcoord(mtcars, columns = c(1, 5:10)) + geom_line()