Here's a plot:
library(ggplot2)
library(tibble)
ggplot(head(mtcars) %>% rownames_to_column("cars"),
aes(x = reorder(cars, - drat),
y = drat)) +
geom_col() +
coord_flip()
How can I apply bold font on specific car names (for example just on "Hornet 4 Drive" and "Datsun 710")?
I would prefer a quite "general" answer, i.e an answer that makes it easy to apply a particular color or another font family instead of bold font.




