在创建箱线图的过程中,我在y轴上有百分比。但是,它显示为例如20.0%
,而我更喜欢20%
。有人知道该如何纠正吗?
box<-ggplot(boxy,aes(x=type,y=value))+
geom_boxplot()+
scale_y_continuous(labels=percent)+ #where I am trying to fix the axis
theme()
)
在这里找到的答案:How do I change the number of decimal places on axis labels in ggplot2?对我来说是没有意义的,因为该函数本身是符号。而且,它比声明ggplot
数据:
type<-c(rep("One",10),rep("Two",10))
value<-c(91,15,55,7,2,19,72,8,52,61,93,48,20,44,33,84,80,88,26,23)
boxy<-data.frame(type,value)