As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center用于指导。
6年前关闭。
我想为我的多维结果实现平行坐标有没有人有一个很好的链接到它在matlab或R中的实现此外,对于产生平行坐标的最佳工具,是否有任何建议?

最佳答案

R溶液
lattice软件包带有R,包括parallel功能:

 parallel(~iris[1:4] | Species, iris)

ggplot2也是你的朋友:
D <- data.frame(Gain = rnorm(20),
                Trader = factor(LETTERS[1:4]),
                Day = factor(rep(1:5, each = 4)))
ggplot(D) +
  geom_line(aes(x = Trader, y = Gain, group = Day, color = Day))

格和ggplot需要不同“形状”的输入数据对于晶格,它是一个矩阵形式,每一列是一个变量,表示在一个平行坐标上对于ggplot,它是一列(收益)和一个单独的变量指标(上面的交易者)/这就是为什么我使用了两个不同的示例,而不是在这里处理数据重塑。
如果你需要一些快速的东西,那么莱迪思很可能适合你Ggplot需要一些时间投资。

10-01 14:54