ggplot常见语法汇总查询

主图

散点图

柱状图

折线图

小提琴图

点图

进化树

圈图

Alluvial图

坐标轴

去掉不必要的到坐标轴的距离,使图形更加紧凑

ggplot2 Bar Graph remove unnecessary distance between axis label and 0 count on y axis

scale_y_discrete(expand = c(0,0))  

在对应的坐标轴里用expand来控制

坐标轴以百分比显示

scale_y_continuous(labels = percent_format())

x和y轴对角线翻转

coord_flip()

  

图例

图例的顺序翻转

scale_fill_manual(guide = guide_legend(reverse=F))

  

分面

持续添加~  

猜你喜欢

转载自www.cnblogs.com/leezx/p/11234380.html