jupyter / notebook

Jupyter Interactive Notebook
https://jupyter-notebook.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
11.58k stars 4.85k forks source link

some problem with scatter and annotate #1697

Open orena1 opened 8 years ago

orena1 commented 8 years ago

When I run this example,

from IPython.core.display import display, HTML
display(HTML("<style>.container { width:100% !important; }</style>"))

%pylab
%matplotlib inline
#mpl.rcParams['ytick.labelsize']='large'
matplotlib.rcParams.update({'font.size': 15})

StandFreq = 6666; DevFreq = 9600

scatter([0],[0],marker='|')
annotate('d',(5550,600),color='green')

this is the result that I get:

image

When I do not use the annotate function I get a correct scatter:

image

Thanks..

gnestor commented 8 years ago

@Carreau Any ideas?

Carreau commented 8 years ago

Hum...not from the top of my head.... Assigning myself I'll have a look next week.