此问题已在此处有答案:
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)
1条答案
按热度按时间kadbb4591#
据我所知,R不具备以可执行文件的形式运行代码的能力。
但是,您可以使用
RScript.exe
,它位于R安装文件夹中的“bin”目录中。您可以将代码保存为 *.r文件,然后从命令窗口调用
RScript
,如下所示: