Estou tentando comparar diferentes estreantes da NBA entre diferentes estatísticas, e achei que o gráfico ficaria ótimo se eu pudesse adicionar o rosto do jogador no final do gráfico, como nos gráficos r / dataisbeautiful . Meu código atualmente é este:
a3 %>%
ggplot(aes(x = reorder(Player,
PPM),
y = PPM)) +
geom_bar(stat = "identity",
aes(fill = Player)) +
geom_text(aes(label = PPM), size = 3, position = position_dodge(width = 1),
hjust = -0.1) +
coord_flip() +
theme_minimal() +
xlab("Player") +
ylab("Points Per Minute") +
theme(legend.position = "none")
2
Você viu este post, parece bastante relevante: jcarroll.com.au/2019/08/13/ggtext-for-images-as-x-axis-labels
—
Ben
O
—
Jon Primavera
ggtext
pacote parece permitir isto: github.com/clauswilke/ggtext#markdown-in-theme-elements
Isso responde sua pergunta? Incluindo imagens no eixo etiqueta em uma ggplot2 animado
—
Tjebo