Nothing
#' @rdname calculate_overall_feature_importance
#'
#' @export
calculate_waypoint_feature_importance <- function(
trajectory,
expression_source = "expression",
waypoints = NULL,
fi_method = fi_ranger_rf_lite(),
verbose = FALSE
) {
if (is.null(waypoints)) {
if (!dynwrap::is_wrapper_with_waypoints(trajectory)) {
message("Adding waypoints to prediction")
trajectory <- trajectory %>% dynwrap::add_waypoints()
}
waypoints <- trajectory$waypoints
}
expression <- dynwrap::get_expression(trajectory, expression_source)
calculate_feature_importances(
X = expression,
Y = t(waypoints$geodesic_distances)[rownames(expression),unique(rownames(waypoints$geodesic_distances))],
fi_method = fi_method,
verbose = verbose
) %>%
rename(waypoint_id = .data$predictor_id)
}
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.