R dygraph-更高级的情节未显示

时间:2019-11-10 17:47:58

标签: r r-dygraphs

当我绘制基本图形时,没有任何问题,但是,当我尝试绘制类似dyBarSeries()的图形时,它会在图形上绘制点,并在我通过光标传递时显示它们,但是不会生成条形图。

这是一个可复制的示例,直接从R github页面的笔谱中获取:

# create dictionary sem = {1: 0, 2: 0, 3: 0, 4: 0, 5: 0, 6: 0}
sem = {x: 0 for x in range(1,7)}

for cell in sheet1.col(3):
    try:
        sum[int(cell.value)] += 1
    except ValueError:
        print('Error value in cell {}'.format(cell.value))

我应该得到这个: regular dygraph

但是我得到了: my dygraph

是什么原因造成的?我还尝试了rstudio.cloud来检查它是否是我的R安装和程序包,但结果还是一样。

编辑:从我的工作PC上运行示例代码,没有问题,可以完美地工作。该问题应该是我的R安装或PC上的本地问题,但在rstudio.cloud上也有同样的问题。

1 个答案:

答案 0 :(得分:0)

我认为这样可以提供所需的输出。

lungDeaths <- cbind(mdeaths, fdeaths)
dygraph(lungDeaths) %>%
#  dyBarSeries('fdeaths') %>% 
#  dyFilledLine('mdeaths') %>% 
  dyRangeSelector()