multithreading with R?

后端 未结 5 1295
鱼传尺愫
鱼传尺愫 2020-11-29 22:18

Reading the R-project website, there are some (unclear) references to multithreading with R, but it is unclear how the base product and CRAN libraries are compiled.

5条回答
  •  青春惊慌失措
    2020-11-29 22:41

    You can effectively multi-thread R by using KNIME or any other program that utilizes the rserve.exe executable. In KNIME, you can put an R Snippet within a Parallel Chunk node series for operations done row-wise. For column-wise operations, you can split the data set into subsets of columns and execute R Snippets on each set, then merge them back together.

    I hope this makes your CPU fan spin faster!

提交回复
热议问题