library(plotly)
dat1 <- data.frame(
sex = factor(c("Female","Female","Male","Male")),
time = factor(c("Lunch","Dinner","Lunch","Dinner"), levels=c("Lunch","Dinner")),
total_bill = c(13.53, 16.81, 16.24, 17.42)
)
p <- ggplot(data=dat1, aes(x=time, y=total_bill, group=sex,color=sex)) +
geom_line() +
geom_point()
ggplotly(p)
我想默认隐藏一行,以便用户可以随时点击它并使其在图表本身上可见。 我使用“renderPlotly”渲染上面的情节。 我有什么选择已经存在吗?
答案 0 :(得分:0)
添加以下行解决了这个问题。
style(ggplotly(p),visible="legendonly", traces = 1)