gpt4 book ai didi

r - 是否可以通过主题设置 geom_text 大小?

转载 作者:行者123 更新时间:2023-12-03 22:31:14 25 4
gpt4 key购买 nike

我想为所有 geom_text 更改基本字体元素。

library(ggplot2)

df <- data.frame(
x = c(1, 2, 3), y = c(1, 2, 3), label = c("a", "b", "c")
)

ggplot(df, aes(x, y, label = label)) + geom_text()

base size

我试过设置 theme文本,但它似乎没有影响 geom_text元素。
ggplot(df, aes(x, y, label = label)) + 
geom_text() +
theme(text = element_text(size = 42))

size = 42

我看到一些较旧的帖子建议使用 base_size但它似乎不再受支持。

最佳答案

您可以通过在 geom_text() 中使用它来控制大小功能。

library(ggplot2)


df <- data.frame(
x = c(1, 2, 3), y = c(1, 2, 3), label = c("a", "b", "c")
)

# use 'size' in geom_text function
ggplot(df, aes(x, y, label = label)) +
geom_text(size = 10)

enter image description here

关于r - 是否可以通过主题设置 geom_text 大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52358461/

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