ggplotグラフの個々のバーに画像を挿入する方法


9

さまざまな統計でさまざまなNBAルーキーを比較しようとしています。r/ dataisbeautifulグラフのように、グラフの最後にプレーヤーの顔を追加できれば、グラフが見栄えが良いと思いました。私のコードは現在これです:

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
このブログ投稿をご覧になりました
Ben

2
ggtext:パッケージには、この許可するように思わgithub.com/clauswilke/ggtext#markdown-in-theme-elements
ジョン・春

これはあなたの質問に答えますか?アニメーションggplot2に軸ラベルの画像を含める
Tjebo

回答:


7

あなたはreprexを提供しなかったので、私は何かを補う必要があります。たぶんこんな風になります。

library(tidyverse)
library(ggtextures)
library(magick)
#> Linking to ImageMagick 6.9.9.39
#> Enabled features: cairo, fontconfig, freetype, lcms, pango, rsvg, webp
#> Disabled features: fftw, ghostscript, x11

data <- tibble(
  count = c(5, 6, 6, 4, 2, 3),
  animal = c("giraffe", "elephant", "horse", "bird", "turtle", "dog"),
  image = list(
    image_read_svg("http://steveharoz.com/research/isotype/icons/giraffe.svg"),
    image_read_svg("http://steveharoz.com/research/isotype/icons/elephant.svg"),
    image_read_svg("http://steveharoz.com/research/isotype/icons/horse.svg"),
    image_read_svg("http://steveharoz.com/research/isotype/icons/bird.svg"),
    image_read_svg("http://steveharoz.com/research/isotype/icons/turtle.svg"),
    image_read_svg("http://steveharoz.com/research/isotype/icons/dog.svg")
  )
)

ggplot(data, aes(animal, count, fill = animal, image = image)) +
  geom_isotype_col(
    img_height = grid::unit(1, "null"), img_width = NULL,
    ncol = 1, nrow = 1, hjust = 1, vjust = 0.5
  ) +
  coord_flip() +
  guides(fill = "none") +
  theme_minimal()

reprexパッケージ(v0.3.0)によって2019-11-03に作成されました


ありがとう、これはうまくいきました!私はここに同じバーに2つの画像を表示することが可能であるかどうかを尋ねたかったのですが(hjust値をいじることによって想定しています)、次のようなものを持っています。 image = image&x))
Pedro Guizar

これについては、別のトップレベルの質問を投稿してください。
クラウスウィル

ジャストは@Clausウィルケやったstackoverflow.com/questions/58793147/...
ペドロGuizar

これは非常に便利です。CRANでggtexturesを取得する計画はありますか?
stevec

いいえ。今ではより強力なggpatternがあります。github.com/coolbutuseless/ggpattern
Claus Wilke
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.