在Python中更改轴标签大小ggplot

时间:2015-10-05 18:39:17

标签: python python-ggplot

在R:

p + theme(axis.title = element_text(size = 12))

如何在Python实现中执行此操作?

  

注意:我无法在Python中找到 ggplot 的综合文档来源,这可能会使这样的简单请求非常困难。

2 个答案:

答案 0 :(得分:0)

p + theme(axis_text = element_text(size = 12))

答案 1 :(得分:-2)

使用:

p + theme(axis_title = element_text(size = 12))