pycharm中的R代码调试:无法运行用户定义的函数?

时间:2018-09-02 21:54:56

标签: r pycharm

我有一个非常简单的R脚本(实际上只是从“真实”脚本中提取了几行。)

suppressPackageStartupMessages(library("klaR"))
suppressPackageStartupMessages(library("caret"))
# The diabetes data has been modified with a header line
wdat <- read.csv('/git/uni/data/pima-indians-diabetes.csv', header=TRUE)

X <- wdat[,-c(9)]
Y <- wdat[,9]
set.seed(1)

xsquared = function(x) { x * x}

for (wi in 1:2) {
  ttSplitx <- createDataPartition(y=Y, p=.8, list=FALSE)
  Xx <- X
  nxTrain <- Xx[ttSplitx, ]
  nyTrain <- Y[ttSplitx]
  labelTrue <- nyTrain>0
  posCnt <- nxTrain[labelTrue, ]
  negCnt <- nxTrain[!labelTrue,]
  posMean <- sapply(posCnt, mean, na.rm=TRUE)
  posSd <- sapply(posCnt, sd, na.rm=TRUE)
  posOffsets <- t(t(nxTrain)-posMean)
  posScaled <- t(t(posOffsets)/posSd)
  posLogs <- -(1/2)*rowSums(apply(posScaled,c(1, 2),
    function(x) { x * x} ), na.rm=TRUE)-sum(log(posSd))   # Line 25
    # function(x) { xsquared(x)  }), na.rm=TRUE)-sum(log(posSd)) # Line 26
}
print('done')

上面的代码在大约三秒钟的时间内启用了调试。

但是当通过交换注释使用line26而不是line25时,它将运行,但在 debug 模式下将无限期挂起。

  posLogs <- -(1/2)*rowSums(apply(posScaled,c(1, 2),
    #function(x) { x * x} ), na.rm=TRUE)-sum(log(posSd))   # Line 25
    function(x) { xsquared(x)  }), na.rm=TRUE)-sum(log(posSd)) # Line 26

这明确表明pycharm无法调试到

xsquared = function(x) { x * x}

对于我尝试定义的任何函数都是如此。

那么..为什么不能通过pycharm R调试器调用用户功能?

1 个答案:

答案 0 :(得分:0)

插件开发人员提出了一个问题-他回答说该功能目前不可用。

https://github.com/holgerbrandl/r4intellij/issues/174