Take a wild stab at guessing how many CPUs to use in cluster when you have some idea of how much RAM is needed per CPU.
guesstimate(ram, prop = 0.8, units = "gb")
Integer. Number of CPUs to allocate to cluster.
Tries to be conservative by assuming no more than 80% system memory use.
You should take these numbers with several grains of salt.
if (FALSE) { # \dontrun{
guesstimate(4)
guesstimate(4, 0.90, "MB")
} # }