gpt4 book ai didi

r - ggplot 中的多个异常值 -> alpha 到 outlier.color

转载 作者:行者123 更新时间:2023-12-01 12:53:58 27 4
gpt4 key购买 nike

我想将箱线图中的异常点设置为半透明
here!他们使用了“抖动”(类似的想法,不同的方法)

我的代码

ggplot() + 
geom_boxplot(aes(x = Sistema, y=values, linetype = Sistema),
data=estacado, outlier.size=1, outlier.shape=2) +
coord_flip() +
labs(x="Sistema", y=expression(paste("RMSD ",(ring(A))))) +
opts(legend.position="none")

我的数据
>head(estacado)
values ind Sistema
1 0.310214 r24_a R24
2 0.428232 r24_a R24
3 0.460971 r24_a R24
4 0.482923 r24_a R24
5 0.492656 r24_a R24
6 0.515591 r24_a R24
> tail(estacado)
values ind Sistema
4999995 1.723030 g24_e G24
4999996 1.718444 g24_e G24
4999997 1.720745 g24_e G24
4999998 1.737137 g24_e G24
4999999 1.733106 g24_e G24
5000000 1.738487 g24_e G24

http://dl.dropbox.com/u/19202810/Rplot01.png http://dl.dropbox.com/u/19202810/Rplot01.png

在提到的链接中,他们修改了函数 geom_boxplot ;我希望有更简单的东西,比如 outlier.colour= alpha("black", 1/2)但这给出了错误:
Error in do.call("layer", list(mapping = mapping, data = data, stat = stat,  : 
could not find function "alpha"

任何帮助表示赞赏。

最佳答案

截至 ggplot2 0.9.0 版,alpha功能已移至(当时是新的)scales包裹。要使用它,您需要包括

library("scales")

此外
library("ggplot2")

在你的脚本中。

关于r - ggplot 中的多个异常值 -> alpha 到 outlier.color,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10697504/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com