gpt4 book ai didi

r - 如何在 R 中的图例中隐藏痕迹

转载 作者:行者123 更新时间:2023-12-04 12:16:41 25 4
gpt4 key购买 nike

我有一个带有几条痕迹的 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')
)

输出

enter image description here

关于r - 如何在 R 中的图例中隐藏痕迹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61087468/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com