facetのstripのtextを変更する

ggplot2でfacet_gridやfacet_wrapを使ってグラフを分割描画した際に、各グラフについているラベル(strip)のテキストは、何もしなければ分割に用いたグループ名が自動的に入る。 例: ggplot(iris, aes(x = Petal.Length, y = Petal.Width)) + geom_point() + facet_grid(.~Species) このラベル部分はlabeller functionと…