0

i'm trying to plot basemap with ipython notebook.This is my code and the output:

image

There's actually no error, but I just want a more silent output, output map only instead of map and bunch of <matplotlib.patches.Polygon object at 0x118317250>.

What should I do to avoid this? Thanks

Napitupulu Jon
  • 7,713
  • 3
  • 22
  • 23

1 Answers1

1

Add a final semicolon ; to the last line in the cell.

gboffi
  • 22,939
  • 8
  • 54
  • 85
  • 1
    If you are interested in the reason it works, I've just written [an answer](http://stackoverflow.com/a/29094034/2749397) to another question where I try to explain why adding a semicol does the trick. – gboffi Mar 17 '15 at 08:12