本文介绍了ggplot中的欧洲/法国千分隔符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我试图用一个空格(而不是逗号)作为千位分隔符; 来格式化y轴在ggplot图中,类似10000而不是10,000。 我无法在 scale_y_continuous 帮助中找到它。 感谢您的任何提示。 p> 解决方案 正如@David和@joran所说的。标签格式化程序: space format(x,。 ..,big.mark =,scientific = FALSE,trim = TRUE)} scale_y_continous 一起使用它: plot + scale_y_continuous labels = space) I'm trying to format the y axis in a ggplot graph with a space (and not a comma) as thousand separator ; something like 10 000 and not 10,000.I can't found it in the scale_y_continuous help.Thanks for any hint. 解决方案 As @David and @joran just said.First, define the label formatter:space <- function(x, ...) { format(x, ..., big.mark = " ", scientific = FALSE, trim = TRUE)}and then use it with scale_y_continous:plot + scale_y_continuous(labels = space) 这篇关于ggplot中的欧洲/法国千分隔符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-04 02:38