gpt4 book ai didi

r - GGplot2 geom_text() 的最小尺寸

转载 作者:行者123 更新时间:2023-12-04 19:09:39 25 4
gpt4 key购买 nike

我有一个用 GGplot2 制作的情节。现在,当我想更改图中文本点的大小时,文本的大小不会改变。我使用以下代码行:

ggplot(data = out, aes(x = V2, y = V1)) +
****geom_text(data = out[!is.na(out$V1),], aes(label = labels, alpha=0.3, size=0.1))**** +
facet_grid(id1 ~ id2,scales="fixed")+
geom_text(data=df.text,aes(pos,pos,label=id1)) + geom_abline( slope=1 ) +
ggtitle("Corralation between measured & calculated affinities") +
ylab("") + xlab("") + theme(panel.grid.minor.x=element_blank(), panel.grid.major.x=element_blank())
}

我把 ** 放在感兴趣的脂肪线的开始和结束之间。我知道 size 是要更改的正确参数,但是当例如使 size=0.01 时,为什么我的文本没有更改。

最佳答案

感谢 Adam Kimberley,尺寸参数应该像这样移动到第二个括号之外 geom_text(data = out[!is.na(out$V1),], aes(label = labels), size=0.1, alpha=0.3)比文本的大小改变。

关于r - GGplot2 geom_text() 的最小尺寸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16420209/

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