python plotnine:facet_grid 中的标注器未更改分面标题
python plotnine: labeller in facet_grid not changing the facet title
我想更改 plotnine (python ggplot) 中的分面标题,当在分面中使用 2 个变量而不更改数据本身时。
示例:使用 mpg 数据
pretty = p9.ggplot(data=mpg, mapping = p9.aes(x='hwy', y='displ'))+ p9.geom_point(alpha = 0.6)
pretty + p9.facet_grid("cyl~year")
我有以下情节:
我想将年份更改为 "yr 1999" 和 "yr 2008",将标题更改为 "c4"、"c5"、"c6"、"c8".但是当我在 facet_grid:
中使用贴标机时
pretty + p9.facet_grid("cyl~year", labeller = ["c4", "c5","c6", "c8", "yr 1999", "yr 2008"])
剧情不变。我试过 google 但没有找到用两个变量更改分面标题的答案。
labeller
函数参见 documentation。
import plotnine as p9
from plotnine.data import mpg
def col_func(s):
return 'yr ' + s
pretty = p9.ggplot(data=mpg, mapping = p9.aes(x='hwy', y='displ'))+ p9.geom_point(alpha = 0.6)
pretty + p9.facet_grid("cyl~year", labeller=p9.labeller(cols=col_func))
我想更改 plotnine (python ggplot) 中的分面标题,当在分面中使用 2 个变量而不更改数据本身时。
示例:使用 mpg 数据
pretty = p9.ggplot(data=mpg, mapping = p9.aes(x='hwy', y='displ'))+ p9.geom_point(alpha = 0.6)
pretty + p9.facet_grid("cyl~year")
我有以下情节:
我想将年份更改为 "yr 1999" 和 "yr 2008",将标题更改为 "c4"、"c5"、"c6"、"c8".但是当我在 facet_grid:
中使用贴标机时 pretty + p9.facet_grid("cyl~year", labeller = ["c4", "c5","c6", "c8", "yr 1999", "yr 2008"])
剧情不变。我试过 google 但没有找到用两个变量更改分面标题的答案。
labeller
函数参见 documentation。
import plotnine as p9
from plotnine.data import mpg
def col_func(s):
return 'yr ' + s
pretty = p9.ggplot(data=mpg, mapping = p9.aes(x='hwy', y='displ'))+ p9.geom_point(alpha = 0.6)
pretty + p9.facet_grid("cyl~year", labeller=p9.labeller(cols=col_func))