2

I am trying to use ggplot to plot data in python. I use the following:

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 recognizes theme_bw() but in this theme it does not display the axis line not the box outline for the plot. I attempted to use panel_border to do the same but I get:

NameError: name 'element_rect' is not defined

How can I get a box outline for my plot?

Shawn Mehan
  • 4,513
  • 9
  • 31
  • 51
beeprogrammer
  • 581
  • 1
  • 7
  • 18

0 Answers0