在RStudio中有一个非常神秘的错误消息

时间:2015-07-09 16:22:39

标签: r rstudio

我在一个包含1048575个对象的列表中的变量中在RStudio中制作了一个条形图。 barplot就是这样构建的

towers = cell_tracking$grid_pos #grid_pos is the variable, cell_tracking is the list
towers.freq = table(towers)
barplot(towers.freq, xlab = "tower IDs", ylab = "frequency"

也许我使用了错误的方法,因为这是我收到的错误消息

0x1016e8f20. This is a serious error. This application, or a library it uses, is using an
invalid context and is thereby contributing to an overall degradation of system stability
and reliability

我甚至不确定我的条形图是这个错误消息背后的原因,但它确实出现在我运行代码以制作条形图后,所以这似乎是最可能的来源。有谁知道这背后的原因?我应该害怕吗?我该怎么做才能解决它?

0 个答案:

没有答案