Description Usage Arguments Examples
This function plots weights of non-zero features.
1 | plot_bar_weights(df, n_top = NULL)
|
df |
A data frame that has columns: Feature, Weight. |
n_top |
An integer number showing how many top features are displayed. If NULL, all non-zero features are displayed. |
1 2 3 4 | library(reflect)
df <- data.frame(Feature = names(egfr_result$shc$weight),
Weight = egfr_result$shc$weight)
plot_bar_weights(df)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.