更改剪切函数中的标签符号样式?

Change the label notation styles in cut functions?

我正在使用 ggplot2 函数集在 R 中创建一些分箱数据。符号样式是“(a,b]”。我知道可以使用预先指定的标签。但是我喜欢使用默认提供的返回数字标签的想法。但是,我想将符号样式更改为类似 "a - b" 的样式。这可能吗?

您可以使用正则表达式

自动重命名 cut 中的关卡
x = runif(100, 0,100)
y = cut(x, breaks = (0:10)*10)
levels(y)
# [1] "(0,10]"   "(10,20]"  "(20,30]"  "(30,40]"  "(40,50]"  "(50,60]"  "(60,70]"  "(70,80]" 
# [9] "(80,90]"  "(90,100]"
levels(y) = sub(".(.+),(.+).", "\1-\2"  , levels(y))
# [1] "0-10"   "10-20"  "20-30"  "30-40"  "40-50"  "50-60"  "60-70"  "70-80"  "80-90"  "90-100"