gg + scale_x_reverse() 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 6.2 如何通过设置原始值的格式为轴标签编写自定义文本?(How to Write Customized Texts for Axis Labels, by Formatting the Original Values?) 让我们设置Y轴文本的breaks,并设置X轴和Y轴标签。我用了两种方法格式化...
直接使用scale_x_reverse()/scale_y_reverse()。 代码语言:javascript 复制 p<-ggplot(diamonds,aes(carat,price))+geom_point()p1<-p+scale_x_reverse()p+p1 plot of chunk unnamed-chunk-5 修改类别型坐标轴的顺序 使用scale_x_discrete()中的limits参数即可。 或者在原始数据中,先设置好分类变量的因子顺...
p1 <- p+scale_x_reverse() p+p1 plot of chunk unnamed-chunk-5 修改类别型坐标轴的顺序 使用scale_x_discrete()中的limits参数即可。 或者在原始数据中,先设置好分类变量的因子顺序。 p <- ggplot(diamonds, aes(cut, price))+ geom_boxplot() p1 <- p+scale_x_discrete(limits=c("Very Good","...
#x轴刻度颠倒scale_x_reverse() p2 <- p1 + scale_x_reverse() #y轴刻度颠倒scale_y_reverse() p3 <- p2 + scale_y_reverse() p4 <- ggplot(mpg, aes(drv, hwy)) + geom_hline(yintercept = 28, colour = "red") + geom_boxplot() #设置y轴范围ylim,显示部分观测值 p5 <- p4 + coord...
bp + scale_x_discrete(breaks=NULL) 1. 2. # 也能够这样通过设置 theme 实现 bp + theme(axis.ticks = element_blank(), axis.text.x = element_blank()) 1. 2. 连续型数据的坐标轴 设置坐标轴的范围和颠倒 # Make sure to include 0 in the y axis ...
axis.text = element_text(size = 13), legend.text = element_text(size = 12)) p 坐标轴转换 ggplot2提供了一些函数来对坐标轴直接进行转换: scale__log10()* 对数转换 scale__sqrt()* 平方根转换 scale__reverse()* 坐标轴倒序 如下对X轴进行平方根转换,对Y轴进行对数转换: ...
xlim(6.5,3.5)# 指定反序范围反转,先写最大值,再写最小值scale_x_reverse()# 反转x轴,不设定值域范围scale_x_reverse(limits=c(8,0))# 反转x轴并设定值域范围 以上y轴同理 4.4.2 离散型坐标轴 代码语言:javascript 复制 设定参数limits来修改坐标轴顺序scale_x_discrete(limits=c("trt1","ctrl","trt...
axis.linewidth = 0.5, axis.arrow = NULL, direction = NULL, default.unit = "line", override.aes = list(), reverse = FALSE, order = 0, show.limits = NULL, ... ) 通过以下示例可以看出两个函数效果的区别: p31 <- ggplot(mtcars, aes(mpg, drat)) + ...
plotbp<-ggplot(PlantGrowth,aes(x=group,y=weight))+geom_boxplot()bp# Horizontal box plotbp+coord_flip()set.seed(1234)# Basic histogramhp<-qplot(x=rnorm(200),geom="histogram")hp# Horizontal histogramhp+coord_flip()# Reverse y axis# Basic histogramhp# Y axis reversedhp+scale_y_reverse(...
在geom_bar加上参数position = position_stack(reverse=TRUE),重点是reverse=TRUE。注意要加在geom_bar...