我正在尝试使用雪包进行 R 代码。我有功能
imp<-函数(x,y)
如何在 clusterApply 中使用此功能?
cl <- makeCluster(c("localhost","localhost"), type = "SOCK")
clusterApply(cl, 1:6, get("+"), 3)
stopCluster(cl)
而不是这个我想使用我的功能
cl <- makeCluster(c("localhost","localhost"), type = "SOCK")
clusterApply(cl, imp(dataset,3), 3)
stopCluster(cl)
假设这是我的功能,我如何使用此功能在并行和分布式系统中运行..
impap<-function(x,y)
{
data<-as(x,"matrix")
t<-data+y
print(t)
}