在Windows操作系统中,以可执行程序的形式执行r代码的过程是什么?[副本]

sr4lhrrt  于 2023-05-11  发布在  Windows
关注(0)|答案(1)|浏览(191)

此问题已在此处有答案

Compile R script into standalone .exe file?(5个答案)
2天前关闭。
我用r语言创建了一串代码来做一些分析。我计划使这些代码在Windows中的可执行程序的形式。做这件事的过程是什么?一些相关代码如下:

library(dplyr)
library(EnvStats)
library(plotrix)
library(tidyverse)
library(emmeans)
library(multcomp)
library(ggplot2)

fn_G <- function(x){
  replace (replace(x, x > 35 ,  mean (x[x<= 35 ])) ,  x < 5 ,  mean (x[x>= 5 ]))
}

df1 <- df %>%
  group_by(Samples) %>%
  mutate(across(starts_with("GOI"), fn_G)) 

View(df1)
kadbb459

kadbb4591#

据我所知,R不具备以可执行文件的形式运行代码的能力。
但是,您可以使用RScript.exe,它位于R安装文件夹中的“bin”目录中。
您可以将代码保存为 *.r文件,然后从命令窗口调用RScript,如下所示:

Path_to_R_installation\bin\x64\RScript.exe < Path_to_your_RCode\your_code.r

相关问题