我有这个情节:
g.mean <- ggplot(df,aes(x = as.numeric(xx),y=yy,color=varc)) +
geom_line() +
geom_ribbon(aes(ymin=Born_Inf, ymax=Born_Sup, fill=varc), alpha=0.1)
有没有办法只隐藏 geom_ribbon() 并将 geom_line() 打印到我的图表中?我尝试使用“legendonly”,但这隐藏了所有行......
style(ggplotly(g.mean, tooltip = c("varc")), hoverinfo = "value",visible="legendonly") #,traces = 1