55

ggplot オブジェクトをグロブに変換してからレイヤーを変更することにより、オブジェクトを操作する関数があります。関数がグロブではなく ggplot オブジェクトを返すようにしたいと思います。グロブを gg に戻す簡単な方法はありますか?

のドキュメントggplotGrob非常にまばらです。
簡単な例:

P <- ggplot(iris) + geom_bar(aes(x=Species, y=Petal.Width), stat="identity")

G <- ggplotGrob(P)
... some manipulation to G ...

## DESIRED: 
P2 <- inverse_of_ggplotGrob(G)

such that, we can continue to use basic ggplot syntax, ie
`P2 + ylab ("The Width of the Petal")`

アップデート:

コメントの質問に答えるために、ここでの動機は、各ファセットのラベル名の値に基づいて、ファセット ラベルの色をプログラムで変更することです。以下の関数はうまく機能します (前の質問の洗礼者からの入力に基づく)。

からの戻り値をcolorByGroup単なるグロブではなく、ggplot オブジェクトにしたいと考えています。

ここにコードがあります、興味のある人のために

get_grob_strips <- function(G, strips=grep(pattern="strip.*", G$layout$name)) {

  if (inherits(G, "gg"))
    G <- ggplotGrob(G)
  if (!inherits(G, "gtable"))
    stop ("G must be a gtable object or a gg object")

  strip.type <- G$layout[strips, "name"]
  ## I know this works for a simple 
  strip.nms <- sapply(strips, function(i) {
     attributes(G$grobs[[i]]$width$arg1)$data[[1]][["label"]]
  })

  data.table(grob_index=strips, type=strip.type, group=strip.nms)
}


refill <- function(strip, colour){
  strip[["children"]][[1]][["gp"]][["fill"]] <- colour
  return(strip)
}

colorByGroup <- function(P, colors, showWarnings=TRUE) {
## The names of colors should match to the groups in facet
  G <- ggplotGrob(P)
  DT.strips <- get_grob_strips(G)

  groups <- names(colors)
  if (is.null(groups) || !is.character(groups)) {
    groups <- unique(DT.strips$group)
    if (length(colors) < length(groups))
      stop ("not enough colors specified")
    colors <- colors[seq(groups)]
    names(colors) <- groups
  }


  ## 'groups' should match the 'group' in DT.strips, which came from the facet_name
  matched_groups <- intersect(groups, DT.strips$group)
  if (!length(matched_groups))
    stop ("no groups match")
  if (showWarnings) {
      if (length(wh <- setdiff(groups, DT.strips$group)))
        warning ("values in 'groups' but not a facet label: \n", paste(wh, colapse=", "))
      if (length(wh <- setdiff(DT.strips$group, groups)))
        warning ("values in facet label but not in 'groups': \n", paste(wh, colapse=", "))
  }

  ## identify the indecies to the grob and the appropriate color
  DT.strips[, color := colors[group]]
  inds <- DT.strips[!is.na(color), grob_index]
  cols <- DT.strips[!is.na(color), color]

  ## Fill in the appropriate colors, using refill()
  G$grobs[inds] <- mapply(refill, strip = G$grobs[inds], colour = cols, SIMPLIFY = FALSE)

  G
}
4

3 に答える 3

15

私はノーと言うでしょう。ggplotGrobは一方通行です。grob オブジェクトは、グリッドで定義された描画プリミティブです。任意のグロブをゼロから作成できます。グロブのランダムなコレクションをそれらを生成する関数に戻す一般的な方法はありません (1:1 ではないため、元に戻すことはできません)。一度グロブになると、二度と戻れません。

ggplot オブジェクトをカスタム クラスでラップし、plot/print コマンドをオーバーロードして、カスタムのグロブ操作を行うこともできますが、それはおそらくさらにハックっぽいものです。

于 2017-09-11T17:26:52.760 に答える