Nothing
#' Error Evolution
#'
#' @param model a random forest model.
#' @param label a label plot.
#'
#' @author Joseline Quiros <joseline.quiros@promidat.com>
#' @return echarts4r plot
#' @export e_rf_error
#' @import echarts4r
#' @import traineR
#' @examples
#' model <- traineR::train.randomForest(Species~., iris, mtry = 2, ntree = 20)
#' label <- "Trees"
#' e_rf_error(model, label)
#'
#'
e_rf_error <- function(model, label = "Trees") {
data <- data.frame(x = c(1:length(model$err.rate[,1])),cbind(model$err.rate))
new <- data.frame()
for (nom in colnames(data)[-1]) {
x <- data[["x"]]
y <- data[[nom]]
nombre <- nom
new. <- data.frame(x = x, y = y, nombre = nombre)
new <- rbind(new, new.)
}
plot.rf.err <- new |>
group_by(nombre) |>
e_charts(x) |>
e_line(y, lineStyle = list(type = 'dashed')) |>
e_legend(orient = 'vertical', right = '20', top = '10%') |>
e_axis_labels(x = label, y = 'Error') |>
e_x_axis(scale = T) |> e_y_axis(scale = T) |>
e_tooltip() |> e_datazoom(show = F) |> e_show_loading()
plot.rf.err$x$opts$series[[which(plot.rf.err$x$opts$legend$data == "OOB")]]$lineStyle$type <- "solid"
plot.rf.err
}
#' Var importance Random Forest
#'
#' @param modelo a random forest model.
#' @param error a character specifying the type of importance.
#'
#' @author Joseline Quiros <joseline.quiros@promidat.com>
#' @return echarts4r plot
#' @export e_rndf_importance
#' @import echarts4r
#' @import traineR
#' @examples
#' model <- traineR::train.randomForest(Species~., iris, mtry = 2, ntree = 20)
#' e_rndf_importance(model)
#'
e_rndf_importance <- function(modelo, error = "MeanDecreaseAccuracy") {
aux <- data.frame(modelo$importance)
aux[[error]] <- abs(aux[[error]])
aux <- aux[order(aux[[error]], decreasing = T), ]
label <- row.names(aux)
color <- gg_color_hue(length(label))
aux <- cbind(aux, label = label, color = color)
res <- aux |> e_charts(label) |> e_bar_(error) |>
e_tooltip() |> e_datazoom(show = F) |> e_show_loading()|>
e_add_nested("itemStyle", color) |> e_flip_coords() |>
e_y_axis(inverse = TRUE)
return(res)
}
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.