python_reference/other/python_book_reviews.md
2014-07-05 23:35:32 -04:00

122 lines
6.9 KiB
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<a id="table-of-contents"></a>
# Python Book Reviews
- [Matplotlib Plotting Cookbook](#Matplotlib-Plotting-Cookbook)
- [Python High Performance Programming](#Python-High-Performance-Programming)
- [Learning Ipython for Interactive Computing and Data Visualization](#Learning-Ipython-for-Interactive-Computing-and-Data-Visualization)
- [The Practice of Computing Using Python (2nd Edition)](#The-Practice-of-Computing-Using-Python-(2nd-Edition))
<div style="height:50px;"></div>
**Where are the links?**
I decided to **not** post any links to any online shop here - I don't want to advertise anything but merely want to leave my brief thoughts in hope that it might be helpful to one or the other.
**About the rating scale/review scores**
Most popular review sites provide some sort of rating, e.g., 7/10, 90/100, 3 starts out of 5 etc.
I have to admit that I am not a big fan of those review scores - and you won't find them here. Based on my experience, review scores are just kindling all sorts of arguments, destructive debates, and hate-mails. Let's be honest, every opinion is subjective, and I think that boiling it down to a final score is just an annoyance for everyone.
<div style="height:100px;"></div>
<hr>
<a id="Matplotlib-Plotting-Cookbook"></a>
### Matplotlib Plotting Cookbook
[[back to top](#table-of-contents)]
***by Alexandre Devert***
<font size='0.7em'>
Paperback: 222 pages
Release Date: March 2014
ISBN: 1849513260
ISBN 13: 9781849513265</font>
**A good alternative to the official matplotlib documentation**
As a frequent matplotlib user I have to say that this book really fulfills it's promise as a cookbook by covering the most common use cases, and it is a pretty good and thorough introduction for beginners too (Python beginners as well as matplotlib beginners). However, the problem of this book is that there is the (free) matplotlib gallery (http://matplotlib.org/gallery.html) which also has plenty of very good examples, and I can imagine that it is a tough job as an author to add additional value to that.
What this book does very well is introducing matplotlib quite gently in the first chapter, which makes it quite attractive for Python & matplotlib beginners. But also here, we have the alternative free user guide available online http://matplotlib.org/contents.html
My main point of criticism why I find the matplotlib.org resources more accessible might be that they are actually in color: the plot and the code syntax. Unfortunately, the book only uses colors throughout the first chapter (and very very rarely for a handful of other plots later on), so that the largest portion of the plots are in gray-scale - also no syntax highlighting throughout this book. Since I have the ebook version, I do not fully understand why there is no coloring throughout the other chapters (especially the 2nd chapter, which is called "Chapter 2: Customizing Colors and Styles").
But overall, it covers matplotlib pretty well, and I'd recommend it as an alternative to the resources matplotlib.org.
But to it's defense, my hard copy of the "Gnuplot in Action" is also presented in gray-scales, and the "R Graphic's cookbook" also only makes use of colors rather sparingly. However, I think, nowadays in 2014 I'd at least expect the ebook to be in color - especially if you want to make it more attractive than the freely available online resources.
Not a real point of criticism but more like a suggestion for future editions: as big fan of it, I was actually looking for this section that mentions how to use it in IPython notebooks (%pylab inline vs. matplotlib inline), and maybe also plotly for additional value :)
<hr>
<a id="Python-High-Performance-Programming"></a>
### Python High Performance Programming
[[back to top](#table-of-contents)]
***by Gabriele Lanaro***
<font size='0.7em'>
Paperback: 108 pages
Release Date: December 2013
ISBN: 1783288450
ISBN 13: 9781783288458</font>
**Really recommended book for Python beginners**
A really nice read! It covered 4 important topics: how to profile & benchmark Python code, NumPy, C-extensions via Cython, and parallel programming. However, I found it a little bit too brief on all of the topics, a little bit more depth would have been nice.
Also, I missed a few parts, like general Python tricks for better performance (e.g., in-place operators for mutable types and many many others that I started to create benchmarks for here: https://github.com/rasbt/One-Python-benchmark-per-day)
And another thing that I think would be worth adding in a future addition would be the JIT (just-in-time) compilers, such as parakeet or Numba, especially since Numexpr was briefly mentioned in the NumPy section.
But overall I think it is a very recommended read for Python beginners!
<hr>
<a id="Learning-Ipython-for-Interactive-Computing-and-Data-Visualization"></a>
###Learning Ipython for Interactive Computing and Data Visualization
[[back to top](#table-of-contents)]
***by Cyrille Rossant***
<font size='0.7em'>
Paperback: 138 pages
Release Date: April 2013
ISBN: 1782169938
ISBN 13: 9781782169932</font>
**A short intro book that I would recommend to everyone to get a taste of IPython's greatest features**
It's a brief but good book that provides a good introduction to the IPython environment. I think the high-performance chapter that explained the usage of NumPy among others was a little bit redundant, since it is a general Python topic and is not necessarily specific to IPython. And on the other hand, the chapters on customizing IPython and especially writing own IPython magic extensions were way too brief - when I wrote my own extensions, I needed to look more closely at the IPython extension source code to be able to handle this task.
But still, this is a nice book that I would recommend to people who are fairly new to Python and people who want to get a taste of IPython!
<hr>
<a id="The-Practice-of-Computing-Using-Python-(2nd-Edition)"></a>
###The Practice of Computing Using Python (2nd Edition)
[[back to top](#table-of-contents)]
***by William F. Punch and Richard Enbody***
<font size='0.7em'>
Paperback: 792 pages
Release Date: February 25, 2012
ISBN-10: 013280557X
ISBN-13: 978-0132805575</font>
**A great first Python book**
This was actually my first Python book. It is not meant to be a thorough coverage of all the greatest Python features and capabilities, but it provides a great introduction to computing and programming in general by using the Python language.
It is maybe a little bit to trivial for programmers who just want to pick up the syntax Python language, but I would really recommend this book as a first introduction to people who have never programmed before - I think that Python is a very nice language to pick up this valuable skill.
I am a big fan of books that contains self-assessments: from short exercises up to bigger project assignments, and this book comes with a huge abundance of valuable material, which is a big bonus point.