R语言并行处理:future.applyR语言并行处理:future.applylibrary("future.apply")plan(multiprocess) ## Run in parallel on local computerlibrary("stats")x <- 1:10y <- future_lapply(x, FUN = quantile, probs = 1:3/4)