gpt4 book ai didi

r - ggplot2 热图,带条件的色标

转载 作者:行者123 更新时间:2023-12-01 02:36:56 25 4
gpt4 key购买 nike

我需要在 R 中更改 ggplot 的比例颜色。我的表是:

tt<-data.frame(C1=c(0.4,.5,.5, 0, .8,.8),C2=c(.5,.6,.7, 0, .7,.8), C3=c(.8,.7,.9, 0, .8,.7), 
C4=c(rep(0,6)), C5=c(0.4,.6,.6, 0, .8,.8),C6=c(0.8,.7,.5, 0, .8,.8), C7=c(0.8,.6,.4, 0, .8,.8))

row.names(tt)<-paste("F", 1:6, sep='')
tt<-as.matrix(tt)

然后我进行 reshape :

library(ggplot2)
library(reshape2)
tt_melt <- melt(tt)
tt_melt
colnames(tt_melt)<-c('fila', 'columna', 'performance')

我的图表表示调用中心和与每个职位相关的指标:

ggplot(data=tt_melt,
aes(x=columna, y=fila, fill=performance)) + geom_tile() +
geom_text(aes(label=performance), color='white')
+ theme_minimal(base_size = 12, base_family = "")+
labs(title = 'Performance por posicion en el call')+
scale_colour_manual(values = c("red","yellow", "green"))
scale_fill_gradient(low = "yellow", high = "darkgreen")

enter image description here

但它不考虑规模。我需要让 0 变成白色(因为这意味着那个空间里没有人),其余的从红色变成绿色。所以它不是一个真正连续的尺度(但应该是从红色到绿色连续的)。如何让 ggplot 进行缩放?另外,如何创建一个对值有条件的比例?最后,如果有更好的方法来做到这一点,我会很高兴听到它。非常感谢。

最佳答案

我希望代码格式是 SO 粘贴的神器。我更喜欢结构化的 ggplot 构建。

如果您生成离散的中断,您可以拥有更多的控制权:

library(ggplot2)
library(reshape2)

tt <- data.frame(C1=c(0.4,.5,.5, 0, .8,.8),
C2=c(.5,.6,.7, 0, .7,.8),
C3=c(.8,.7,.9, 0, .8,.7),
C4=c(rep(0,6)),
C5=c(0.4,.6,.6, 0, .8,.8),
C6=c(0.8,.7,.5, 0, .8,.8),
C7=c(0.8,.6,.4, 0, .8,.8))

row.names(tt) <- paste("F", 1:6, sep='')
tt <- as.matrix(tt)

tt_melt <- melt(tt)
colnames(tt_melt) <- c('fila', 'columna', 'performance')

tt_melt$cut <- cut(tt_melt$performance,
breaks=c(0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0),
labels=as.character(c(0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9)),
include.lowest=TRUE)

perf_cols <- c("white", colorRampPalette(c("red", "green"))( 9 ))
perf_text_cols <- c("black", rep("white", 9))

gg <- ggplot(data=tt_melt, aes(x=columna, y=fila, fill=cut))
gg <- gg + geom_tile()
gg <- gg + geom_text(aes(label=performance, color=cut))
gg <- gg + labs(title = 'Performance por posicion en el call')
gg <- gg + coord_equal()
gg <- gg + scale_colour_manual(values = perf_text_cols)
gg <- gg + scale_fill_manual(values=perf_cols)
gg <- gg + theme_minimal(base_size = 12, base_family = "")
gg <- gg + theme(legend.position="none")
gg

enter image description here

您最好打开 Color Brewer 并更改斜坡。此方法还允许您确保文本在白色图 block 上可见。此外,coord_equal 使您无需使用高度/宽度来获得均匀的 block 。您还可以通过将 color(非 aes)参数添加到 geom_tile 来为图 block 添加边框。

要使 0 值保持白色(根据您的评论),只需像您最初那样使用非 aes 颜色:

gg <- ggplot(data=tt_melt, aes(x=columna, y=fila, fill=cut))
gg <- gg + geom_tile()
gg <- gg + geom_text(aes(label=performance), color="white")
gg <- gg + labs(title = 'Performance por posicion en el call')
gg <- gg + coord_equal()
gg <- gg + scale_fill_manual(values=perf_cols)
gg <- gg + theme_minimal(base_size = 12, base_family = "")
gg <- gg + theme(legend.position="none")
gg

enter image description here

关于r - ggplot2 热图,带条件的色标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27423840/

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