之前使用R跑for循环的时候,占用了服务器大量内存,因此想使用多线程跑的时候服务器分配不了那么多的空间
#分配多个核,当时者这一步卡住了
cl <- makeCluster(mc <- getOption("cl.cores", 4))
点击session重启R,重启后,先加载包,在加载多线程,然后再开始读取文件,跑脚本。
library(tidyverse)
library(ggplot2)
library(stringr)
library(pheatmap)
library(parallel)
cl <- makeCluster(mc <- getOption("cl.cores", 4))
网友评论