我使用ggplotly
函数(来自绘图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)
时,我得到的是:
有两个问题:
有人对这些问题有任何建议吗?