-
Notifications
You must be signed in to change notification settings - Fork 808
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Code Documentation #22
Comments
Oh thanks. Can you make a PR? |
I am sorry, I don't know the acronym PR here. If you please let me know
what it is, I'll do it for you.
Thanks
Rush
…On Mon., Nov. 22, 2021, 05:26 Nicolas P. Rougier, ***@***.***> wrote:
Oh thanks. Can you make a PR?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#22 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AQAWNKPK3CJIP6Y23377SNDUNIZG3ANCNFSM5HWA7JGA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
Oh I got it, I'll make a pull request asap.
Cheers
Rush
…On Mon., Nov. 22, 2021, 05:26 Nicolas P. Rougier, ***@***.***> wrote:
Oh thanks. Can you make a PR?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#22 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AQAWNKPK3CJIP6Y23377SNDUNIZG3ANCNFSM5HWA7JGA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
@HenftyKnight Sorry for the acronym (PR) and you're right, I meant pull request. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome Work! Thank you for creating such an amazing tutorial.
Just one note though, in your Beyond This Tutorial -> Code Documentation
You might want to change the help(plt) -> help(plt.plot) as we have imported
the matplotlib.pyplot as plt so inorder to run the help command for it's functions
help(plt.) would lead to the correct result.
Thank you
#-----------------------------------------------------------
Code documentation
The code is fairly well documented and you can quickly access a specific command from within a python session:
plot(*args, **kwargs)
Plot lines and/or markers to the
:class:
~matplotlib.axes.Axes
. args is a variable lengthargument, allowing for multiple x, y pairs with an
optional format string. For example, each of the following is
legal::
If x and/or y is 2-dimensional, then the corresponding columns
will be plotted.
...
#----------------------------------------------------------
The text was updated successfully, but these errors were encountered: