Reputation: 1061
matplotlib.pyplot.vlines(q/pow(q+1, 2), 2, 13, colors=('black'), linestyles='solid')
for c in my_range(C_initial, C_final, 3): x = np.linspace(eta_initial, eta_final, 100) y = c*pow(x, 0.6) plt.plot(x,y)
Upvotes: 0
Views: 69
Reputation: 13610
You can use the function text. For your fist example that would be something like:
text(0.01,10,'label')
Here is more information on annotating a plot.
Upvotes: 1