Created
May 4, 2020 05:25
-
-
Save abhishek-shrm/ecbf6d2db8e08d2fbbc3aaedf2d44839 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fig=plt.figure(figsize=(8,6)) | |
plt.plot(X,np.exp(X)) | |
plt.title('Annotating Exponential Plot using plt.annotate()') | |
plt.xlabel('x-axis') | |
plt.ylabel('y-axis') | |
#changing axes limits | |
plt.ylim(1,8000) | |
plt.xlim(0,9) | |
plt.annotate('Point 1',xy=(6,400),arrowprops=dict(arrowstyle='->'),xytext=(4,600)) | |
plt.annotate('Point 2',xy=(7,1150),arrowprops=dict(arrowstyle='->',connectionstyle='arc3,rad=-.2'),xytext=(4.5,2000)) | |
plt.annotate('Point 3',xy=(8,3000),arrowprops=dict(arrowstyle='-|>',connectionstyle='angle,angleA=90,angleB=0'),xytext=(8.3,2200)) | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment