I can position the table at the top of the plot. How do I position the table in an arbitrary position?:
from numpy import pi, sin,cos,exp,tan,log10,abs
from matplotlib.pyplot import *
phi=np.linspace(0,4*pi,1001)
alfa=0.2
beta=0.01
y=sin(phi+alfa*phi*phi)
F1=figure()
ax1=subplot(1,1,1)
ax1.plot(phi,y)
ax1.grid()
subplots_adjust(top=0.8)
celltxt=[[str(s)] for s in [alfa,beta]]
data_table = table(cellText=celltxt,rowLabels=['alfa','beta'], colWidths = [0.1]*3, loc='top')
show()
thanks ilan