I'm using cluster in the R raster library to speed up the processing time when running predictions on sdm models. However, even with all available cores utilised (35), it is taking a long time. Is it possible to incorporate a progress bar so I can view it's progress? When I use predict without cluster, I can display the progress;
pb <- predict(pred_nf, bc, ext=ext, progress='text') However, it does not appear when I include it in the cluster
beginCluster() pb <- clusterR(pred_nf, predict, args=list(bc, ext=ext, progress='text')) endCluster() Does anyone have a solution to this?