我的plotly
包有问题。图例无法正确显示或未显示所有值因为它被剪切!
我想在情节区域之外(在底部或右下角)获取图例。
我已经尝试更改ggplot
中的位置:
legend.position="bottom"
根本没有结果......
然后我尝试了plotly
网站的代码:
p %>% layout(legend = list(x = 0.5, y = -100))
它不起作用,传说位于底部,但它被剪切,并且在x轴标题后面......
以下是mtcars
数据集的示例代码:
a <- ggplot(mtcars, aes(x = interaction(cyl, carb, lex.order = T), y = mpg,fill = interaction(cyl, carb, lex.order = T))) +
geom_boxplot()
ggplotly(a)
正如我们所看到的那样,传奇的标题也被切割了。
我将不胜感激任何帮助!
由于
答案 0 :(得分:5)
您可以使用边距和绘图大小。你可以尝试:
| 04 | 2 | 2016-03-27 19:24:37 | 16 |
| 07 | 3 | 2016-03-27 19:24:37 | 17 |