Open
Description
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:
When I do not use the annotate function I get a correct scatter:
Thanks..