错误消息:编译代码(f、代码、语言、详细信息)中出错:警告消息:系统中(cmd):&x27;制作';在r中使用iBMA.glm()函数时找不到

错误消息:编译代码(f、代码、语言、详细信息)中出错:警告消息:系统中(cmd):&x27;制作';在r中使用iBMA.glm()函数时找不到,r,glm,bayesian,R,Glm,Bayesian,当我使用BMA包进行数据建模时。我收到一条错误消息: 编译代码(f、代码、语言、详细信息)中出错:警告消息:在系统(cmd)中未找到“make” 在r中使用iBMA.glm()函数时 下面是r中的一个示例 library("MASS") data(birthwt) y<- birthwt$lo x<- data.frame(birthwt[,-1]) x$race<- as.factor(x$race) x$ht<- (x$ht>=1)+0 x&

当我使用BMA包进行数据建模时。我收到一条错误消息:

编译代码(f、代码、语言、详细信息)中出错:警告消息:在系统(cmd)中未找到“make”

在r中使用iBMA.glm()函数时

下面是r中的一个示例

library("MASS")
data(birthwt)
y<- birthwt$lo
x<- data.frame(birthwt[,-1])
x$race<- as.factor(x$race)
x$ht<- (x$ht>=1)+0
x<- x[,-9]
x$smoke <- as.factor(x$smoke)
x$ptl<- as.factor(x$ptl)
x$ht <- as.factor(x$ht)
x$ui <- as.factor(x$ui)
### add 41 columns of noise
noise<- matrix(rnorm(41*nrow(x)), ncol=41)
colnames(noise)<- paste('noise', 1:41, sep='')
x<- cbind(x, noise)
iBMA.glm.out<- iBMA.glm(x, y, glm.family="binomial", factor.type=FALSE,
verbose = TRUE, thresProbne0 = 5 )

>Compilation ERROR, function(s)/method(s) not created!
>Error in compileCode(f, code, language, verbose) : 
>Warning message:In system(cmd) : 'make' not found*

library(“MASS”)
数据(出生体重)
Y