如何使用ggplot2使用主题选项绘制情节轮廓?

时间:2017-06-08 22:59:25

标签: python ggplot2 python-ggplot

我正在尝试使用ggplot在python中绘制数据。我使用以下内容:

from ggplot import *
print ggplot(frame,aes('x','y',color='z'))+ \
geom_point(size=40)+ \
geom_path(size=3)+ \
theme_bw()+ \
theme(panel_border=element_rect(colour="black"))

Python识别theme_bw()但在此主题中它不显示轴线而不显示绘图的方框轮廓。我尝试使用panel_border做同样的事情,但我得到了:

  

NameError:name' element_rect'未定义

如何获得情节的方框轮廓?

0 个答案:

没有答案