-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Added graphical solution to example #474
Conversation
>>> ax.set_xlabel('Time [ns]') #doctest: +ELLIPSIS | ||
Text(0.5,0,'Time [ns]') | ||
>>> ax.set_ylabel('Intensity [bins]') #doctest: +ELLIPSIS | ||
Text(0,0.5,'Intensity [bins]') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wasn't sure whether #doctest ELLIPSIS
should have been included, but my code didn't pass the tests without it.
Dear @lawrencefchan Thank you for the contribution. I will review it later this week. |
Hello, here are my comments on the pull request:
I realize that these are big changes to your pull request, please let me know if you are interested to go on with the modifications. Pierre |
add python 2/3 section in intro
@pdebuyl thanks for the comments. I'll fix it and try again. Probably this weekend. |
Create in build: - a zip archive of the html file - a copy of the pdf - a zip archive of the source
CNAME is necessary for the custom domain .nojekyll is necessary to avoid github pages hiding directories starting with an underscore
also add release name in about page
The SciPy routines are deprecated. imageio is the recommended successor
replace image i/o from scipy.misc by imageio
The example is already in the exercises. Part solution of scipy-lectures#94
* suppress warnings for mandelbrot example the code applies the iteration for all array elements, some of which are expected to overflow. fix scipy-lectures#480
remove hares lynxes carrots examples from chapter
@pdebuyl sorry it's taken so long. how do the most recent changes look? |
I'll give it a look soon. Sorry for the delay. The merges end up with a lot of changes, many unrelated to your proposition. I'll have to sort it out. |
Would it be easier if I closed this pull request and opened a new one from the current master? |
Yes, a pull request with only your changes would be easier. Also:
|
Added the fitted curve to demonstrate optimize-fit example.
Also added some lines to the plot code snippet to reflect output graph more closely.