R: 如何从 gbm 包中找到 C/C++ 源代码?

R: how can I find C/C++ source code from the gbm package?

library(gbm)
gbm.fit

我运行以上代码查看源码为gbm.fit。看起来函数的“主要内容”在这一行中:

gbm.obj <- .Call("gbm_fit", Y = as.double(y), Offset = as.double(offset), 
                   X = as.double(x), X.order = as.integer(x.order), weights = as.double(w), 
                   Misc = as.double(Misc), cRows = as.integer(cRows), cCols = as.integer(cCols), 
                   var.type = as.integer(var.type), var.monotone = as.integer(var.monotone), 
                   distribution = as.character(distribution.call.name), 
                   n.trees = as.integer(n.trees), interaction.depth = as.integer(interaction.depth), 
                   n.minobsinnode = as.integer(n.minobsinnode), n.classes = as.integer(nClass), 
                   shrinkage = as.double(shrinkage), bag.fraction = as.double(bag.fraction), 
                   nTrain = as.integer(nTrain), fit.old = as.double(NA), 
                   n.cat.splits.old = as.integer(0), n.trees.old = as.integer(0), 
                   verbose = as.integer(verbose), PACKAGE = "gbm")

据我所知,.Call 将 R 对象传递给 C/C++ 代码。有一个名为 gbm_fit 的 C/C++ 函数,我说得对吗?我在哪里可以找到这个源代码?我试过搜索 https://rdrr.io/cran/gbm/src/R/gbm.fit.R,但我似乎无法找到 C/C++ 函数的实际源代码。我也下载了“gbm_2.1.8.tgz”但是找不到源代码。

函数 gbm_fit 的源代码在文件 gbm-2.1.8.tar.gz 的 src/gbmentry.cpp 中(不是 tgz 文件;那是 macOS 二进制文件)。此文件可以是 viewed online GitHub。