【发布时间】:2021-10-27 23:34:11
【问题描述】:
基本上我希望我的情节背景与元情节的颜色相同,当我使用 ggplotly() 包装器时不会执行。带有(第一)和不带 ggplotly 的图像。代码如下:
#ggplotly(
df %>%
filter(!is.na(Boxoffice)&!is.na(Decade))%>%
ggplot(aes(x=Boxoffice,y=IMDb.Score))+
geom_point(aes(text=Title),size=2,alpha=0.3,color = "#DB5461")+
theme_aes()+
facet_wrap(~Decade)+
theme_aes()+
theme(plot.background = element_rect(fill="#f0f0f0",color="#b4b4b4"))
#)
【问题讨论】:
-
theme_aes()是什么?