Nothing
get.fitted.leaf <- function(c5Tree, inpDTemp, epsi=10^(-7)){
## temporarily overwrite the global inpD, get the leafs on inpDTemp
##^as input, restore original inpD
## epsi: epsilon, set to 1E-7 to handle cases on the boundary.
if(!inherits(c5Tree, "C5.0"))
stop("The class of c5Tree argument must be 'C5.0' !")
inpIGlobalName <- as.character(c5Tree$call)[3]
inpDbk <- get(inpIGlobalName) ## inpD
if(!inherits(inpDbk, "data.frame"))
stop(paste("Could not get the global variable ", inpIGlobalName,"!"))
if(! "Labels" %in% colnames(inpDTemp))
inpDTemp <- cbind(inpDTemp,Labels="Labels")
if(any(! colnames(inpDbk) %in% colnames(inpDTemp))){
stop(paste("Colnames of inpDTemp do not match with the",
inpIGlobalName,"!"))
}
if(epsi>0){
notypeCols <- grep("ME", colnames(inpDTemp), value=TRUE)
if(! inherits(inpDTemp[, notypeCols][1,1], "numeric"))
stop("inpDTemp not numeric!")
inpDTemp[, notypeCols] <- inpDTemp[, notypeCols]+epsi
}
assign('inpD', inpDTemp , envir=parent.env(parent.frame()), inherits=TRUE)
qq <- eval(parse(text=(as.character(C50::as.party.C5.0(c5Tree))[3])))[[1]]
assign('inpD', inpDbk , envir=parent.env(parent.frame()), inherits=TRUE)
names(qq) <- rownames(inpDTemp)
return(qq)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.