当我尝试在ggplot2中创建并行坐标时,我收到不推荐使用的消息:
require(ggplot2)
ggpcp(mtcars) + geom_line()
警告讯息: 'ggpcp'已弃用。 请参阅帮助(“已弃用”)
然而,ggplot文档没有说明这一点:http://docs.ggplot2.org/current/ggpcp.html。
某个地方有新的pcp功能吗?
答案 0 :(得分:7)
迁移到GGally。 E.g:
require(GGally)
ggparcoord(mtcars, columns = c(1, 5:10)) + geom_line()