Pesan barplot ggplot2 dengan nilai
ggplot(df, aes(x = reorder(x_col_valus, -col_to_sort_by), y = value)) +
geom_bar(stat = "identity")
Grumpy Goose
ggplot(df, aes(x = reorder(x_col_valus, -col_to_sort_by), y = value)) +
geom_bar(stat = "identity")