如何使用ggplotly改变阴谋数字的位置

时间:2015-12-28 12:45:26

标签: r ggplot2 plotly

我正在尝试使用ggplotly删除图例标题但没有成功。我确定有一个简单的修复,但我找不到它的文档 - 并使用ggplot删除图例标题(或更改定位)无法正常工作。参见例如:

# Creating the ggplot:
a <- ggplot(mtcars, aes(x = interaction(cyl, carb, lex.order = T), 
y = mpg,fill = interaction(cyl, carb, lex.order = T))) + 
      geom_boxplot() + theme(legend.title=element_blank())
    a # No Legend Title
    # plotly puts back the legend title
    ggplotly(a)

有关如何更改/删除图表标题的任何想法?应该使用ggplotly还是ggplot来完成?

1 个答案:

答案 0 :(得分:2)

您可以使用labs功能:

a <- ggplot(mtcars, aes(x = interaction(cyl, carb, lex.order = T), 
y = mpg,fill = interaction(cyl, carb, lex.order = T))) + 
      geom_boxplot()
# update the legend
a <- a + labs(fill= "New Legend")
a
# to remove the label and update the axis texts use:
a <- a+labs(fill= "",x="Cyc/Carb",y="Miles/(US) gallon")
ggplotly(a)