我使用函数遇到了关于线条粗细和图表宽度的问题ggplotly
(来自 plotly R 包)
这是我想使用 ggplotly 制作动态的 ggplot 图表
graphe_clustering <- ggplot(data=dtaLngC, aes(x=DAT_RLV, y=vol_cso_norm))+
geom_line(aes(color=contrat),lwd = 0.5)+
facet_wrap(~Cluster, scales = "free")+
theme(legend.position="none")
目前,一切都很好。但是当我使用时ggplotly(graphe_clustering)
,这是我得到的:
有两个问题:
- 线条粗细过大
- 位于我的窗口中间的图表宽度大大减少
有人对这些问题有什么建议吗?