gpt4 book ai didi

r - ggplot 中的欧洲/法国千位分隔符

转载 作者:行者123 更新时间:2023-12-02 11:00:41 34 4
gpt4 key购买 nike

我正在尝试使用空格(而不是逗号)作为千位分隔符 ; 格式化 ggplot 图中的 y 轴,例如 10 000 而不是 10,000。我在 scale_y_continuous 帮助中找不到它。

感谢您的任何提示。

最佳答案

正如@David 和@joran 刚才所说。

首先,定义标签格式化程序:

space <- function(x, ...) { 
format(x, ..., big.mark = " ", scientific = FALSE, trim = TRUE)
}

然后将其与scale_y_continous一起使用:

plot + scale_y_continuous(labels = space)

关于r - ggplot 中的欧洲/法国千位分隔符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14665461/

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