How can I use multi cores processing to run glm function faster

后端 未结 3 1322
伪装坚强ぢ
伪装坚强ぢ 2021-01-04 23:12

I\'m a bit new to r and I would like to use a package that allows multi cores processing in order to run glm function faster.I wonder If there is a syntax that I can use for

3条回答
  •  别那么骄傲
    2021-01-04 23:44

    A new options, is my package parglm. You can find a comparisons of computation times here. A plot of the computation time versus number of used cores on a 18 core machine in the vignette for two of the implemented methods is given below

    The dashed line is the computation time from glm and the dotted line is the computation time from speedglm. The method with the open circles compute the Fisher information and then solves the normal equation as in speedglm. The full circles makes a QR decomposition as glm. The former is faster but less stable.

    I have added some more comments on the QR method in the answer here on a related question.

提交回复
热议问题