ggplot

时间:2017-09-02 21:51:57

标签: r ggplot2 axis-labels

ggplot标签通常由augument xlab / ylab添加,例如

 ggplot(mtcars,aes(mpg, wt)) + geom_point()+ xlab('x_label')+ ylab('y_label')

是否有任何快捷方式可以预定义标签并调用它们?例如: mylabels 是预定义的。这样可以更有效地重复使用某些标签。

mylabels <- xlab('x_label')+ylab('y_label') 
ggplot(mtcars,aes(mpg, wt)) + geom_point() + mylabels

1 个答案:

答案 0 :(得分:5)

您可以将标签信息存储在列表中,如下所示

mylabels <- list(
  xlab("x_label"), 
  ylab("y_label")
)
ggplot(mtcars,aes(mpg, wt)) + geom_point() + mylabels