I have a slow function that I want to apply to each row in a data.frame. The computation is embarrassingly parallel.
I have 4 cores, but R's built in functions only uses one.
All I want to do is a parallel equivalent to:
data$c = slow.foo(data$a, data$b)
I can't find clear instructions on which library to use (overwhelmed by choice) and how to use it. Any help would be greatly appreciated.