我正在尝试使用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来完成?
答案 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)