gpt4 book ai didi

r - 在ggplot2中用y轴值附加%符号

转载 作者:行者123 更新时间:2023-12-04 14:10:30 26 4
gpt4 key购买 nike

我想在%中添加带有y轴值的ggplot2符号。我使用了scale_y_continuous(labels=percent),但它首先将值与100相乘,然后附加了%符号,而我需要类似35%而不是3,500%的东西。

library(ggplo2)
library(scales)

p <- ggplot(mpg, aes(displ, cty)) + geom_point()

p + facet_grid(. ~ cyl)

p + facet_grid(. ~ cyl) + scale_y_continuous(labels=percent)

enter image description here
enter image description here

最佳答案

将“%”粘贴到值上似乎正常

p + facet_grid(. ~ cyl) + scale_y_continuous(labels=function(x) paste0(x,"%"))

关于r - 在ggplot2中用y轴值附加%符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35967047/

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