I tried this
tmp.smooths <- smoother(tmp, method = list(savgol = list(p = 3,n=5)),paralell = cl)
but I got error:
error in checkForRemoteErrors(val) :
one node produced an error: argument not used (n = 5)
but it worked without any error when I removed: , paralell=cl
tmp.smooths <- smoother(tmp, method = list(savgol = list(p = 3,n=5)))# worked fine
I need to work with parallel, any idea?