我正在尝试使用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'未定义
如何获得情节的方框轮廓?