R -绘制不可见线

xlpyo6sf  于 2023-06-03  发布在  其他
关注(0)|答案(1)|浏览(108)

我有一个数据集df,其中包含变量Name(factor),Count(integer)和Time(POSIX)。
我使用以下代码:

df %>% plot_ly(x=~Time,y = ~Count,group = ~Name,color=~Name,type='scatter',
mode='lines+markers')

发生的事情是,线不出现在所有(标记出现完美虽然)。将模式更改为“行”将使数据不可见,但每当我将指针悬停在数据位置上时,信息就会出现。
还要注意,不使用组运行会产生预期的结果(行可见)

df %>% plot_ly(x=~Time,y = ~Count,type='scatter',
mode='lines+markers')

怎么了?如何使线条清晰可见?

epggiuax

epggiuax1#

是否尝试取消数据集分组?对我很有效。

df %>% 
   ungroup() %>%
   plot_ly(x=~Time,y = ~Count,type='scatter', mode='lines+markers')

相关问题