当我尝试对数据进行分区时,Rstudio出现问题,导致崩溃。我设法在multidplyr的插图中使用了nycflights13数据重现了同样的问题。
这有效
library(multidplyr)
library(dplyr, warn.conflicts = FALSE)
cluster <- new_cluster(4)
library(nycflights13)
flight_dest <- flights %>% partition(cluster)
但是当我这样做
cluster <- new_cluster(2) ## or other numbers for istance 6
flight_dest <- flights %>% partition(cluster)
它崩溃了,我收到以下消息
R会话已终止
R遇到致命错误
会话已终止
我正在使用Rstudio(1.2.5033)和R版本3.6.2
当我在R内部运行时,它确实起作用。