作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有几条痕迹的 plotly 图。其中一些我不想出现在传说中。我该怎么做呢?
最佳答案
您需要设置showlegend = F
在你的踪迹中:
代码
library(plotly)
plt <- plot_ly(as.data.frame(mtcars)) %>%
add_markers(x = ~wt, y = ~mpg, name = 'Fuel Eff.', type = 'scatter') %>%
add_markers(x = ~wt, y = ~hp, name = 'Power to wt. ratio', type = 'scatter',
showlegend = F) %>%
layout(
showlegend = T,
legend = list(orientation = 'h')
)
关于r - 如何在 R 中的图例中隐藏痕迹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61087468/
我是一名优秀的程序员,十分优秀!