Skip to content
Snippets Groups Projects
Verified Commit 4507fae7 authored by Gärber, Florian's avatar Gärber, Florian
Browse files

Fix broken DynLib link

parent 5d64d357
No related branches found
No related tags found
No related merge requests found
......@@ -14,4 +14,4 @@ export(var.relations.mfi)
export(var.select.md)
export(var.select.mir)
export(var.select.smd)
useDynLib(SurrogateMinimalDepth, .registration = TRUE, .fixes = "C_")
useDynLib(RFSurrogates, .registration = TRUE, .fixes = "C_")
......@@ -2,7 +2,7 @@
#'
#' This function adds surrogate variables and adjusted agreement values to a forest that was created by getTreeranger.
#'
#' @useDynLib SurrogateMinimalDepth, .registration = TRUE, .fixes = "C_"
#' @useDynLib RFSurrogates, .registration = TRUE, .fixes = "C_"
#'
#' @param RF random forest object created by ranger (with keep.inbag=TRUE).
#' @param trees list of trees created by getTreeranger.
......@@ -22,7 +22,6 @@
#' \item adj_i: adjusted agreement of variable i
#' }
#' @export
addSurrogates = function(RF,trees,s,Xdata,num.threads) {
num.trees = length(trees)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment