本文介绍了控制ggparcoord中的颜色(来自GGally软件包)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图硬编码一个特定ggparcoord图的线颜色。例如,当我创建我的ggparcoord图如下:

I am trying to hard-code the desired line color for a particular ggparcoord plot. For instance, when I create my ggparcoord plot below:

library(GGally)
x = data.frame(a=runif(100,0,1),b=runif(100,0,1),c=runif(100,0,1),d=runif(100,0,1))
x$cluster = "green"
x$cluster2 = factor(x$cluster)
ggparcoord(x, columns=1:4, groupColumn=5, scale="globalminmax", alphaLines = 0.99) + xlab("Sample") + ylab("log(Count)")

即使我尝试指定颜色为green ,我得到一个粉红色的颜色。如何控制ggparcoord中的行的颜色? (顺便说一句,我想让所有的线条都和我指定的颜色相同)。

Even though I try to specify a color of "green", I get a pink color. How can I control the color of the lines in ggparcoord? (By the way, I want all lines the same color as I specify).

推荐答案

(绿色)=相应的因子级别(绿色):

You should be able to map the colour (darkgreen) to a corresponding factor level (green) by adding:

+ scale_colour_manual(values = c("green" = "darkgreen"))

这篇关于控制ggparcoord中的颜色(来自GGally软件包)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-09 05:34