Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好我正在尝试使用 sqldf 从我的数据库中获取数据。由于 sqldf 总是会加载 tcltk,所以我不能使用 mclapply 函数。我该怎么办?谢谢。
这是一个例子。
options(gsubfn.engine = "R") require("sqldf") require("parallel") sqldf("select * from iris limit 5") for ( i in 1:3) { mclapply(1:30, rnorm) }