Data Crunching 94
Data Crunching: Solve Everyday Problems Using Java, Python, and more. | |
author | Greg Wilson |
pages | 176 |
publisher | Pragmatic Bookshelf |
rating | 7 |
reviewer | Vern Ceder |
ISBN | 0974514071 |
summary | A good introduction to data crunching, but watch the examples. |
On the positive side, there is a lot of good stuff in this book. I would even go so far as to recommend it to everyone who writes code to extract or manipulate data, particularly those less experienced. Greg Wilson should be praised for taking the idea of data crunching seriously and for systematically dealing with its patterns and pitfalls. A lot of important work gets done every day with one-off programs and behind the scenes scripts and Wilson is right that the techniques that go into this sort of coding are different, but just as important, as those that go into full-blown application development.
The strength of this book is that it offers useful approaches and patterns for dealing with a variety of common programming situations and types of data, while also pointing out their common traps and pitfalls. Wilson starts with techniques for crunching text data, moves on to the use of regular expressions, XML, binary data, and SQL databases before concluding with a special section on "horseshoe nails," various little techniques which just might save help save the day. Quite often he uses examples in both Python, which he calls an "agile" language and Java, a "sturdy" language. The basic advice offered is sound, if not shocking -- keep things simple, test as you develop, don't duplicate code, use existing scripts and utilities when possible, and so on. The combination of such sound advice with a wealth of practical examples is makes for a very effective handbook, particularly for someone new to data crunching.
So is Data Crunching a good book? Definitely. Should you read it if you regularly do routine data manipulation and extraction? Absolutely. And yet...
And yet there are number of things that just aren't quite right. The text and binary sections are the best, while I would say that the XML and SQL sections are the weakest, partly because those topics are too broad to cover in a single slim chapter. If you already have an idea of how you might want to use XML or how to extract data from a SQL database, you're likely find something handy in those chapters. On the other hand, if you're unfamiliar with them, this book probably doesn't have enough detail to get you writing useful code. I should say it doesn't have enough detail to get you writing useful code knowing what you're doing. And data crunching without knowing what you're doing is a bad idea. Trust me on that one.
I have another problem with the section on SQL. Several of the slicker SQL recipes rely on nested queries (page 147-151). MySQL, clearly a very popular SQL database, has nested queries only in its latest versions, so many, if not the majority, of MySQL installations do not yet have that capability. Yet the text carries on as if nested queries were universal, without so much as parenthetical mention that some things might not work on all SQL implementations. It seems to me that this is exactly the sort of pitfall a book like this should inform the reader of.
There are also several coding examples that bother me. Since I tend to both learn and teach by paying close attention to examples, I get uncomfortable with examples that seem to suggest something other than what they should.
For instance, the very first pieces of sample code (pages 9-10) in the text chapter are Python and Java programs to reverse the order of lines in a text file. I don't have a problem with the exercise itself, I've often assigned it to beginning programmers. However, this book is about quick and reliable solutions to common data handling problems, not leading people through basic programming exercises. Ironically, the very same chapter discusses the advantages of using the Unix command-line and its wealth of little tools. So wouldn't it be reasonable to expect at least a brief note or example showing that the REALLY easy way to solve the problem is with a single line: $ tac filename > filename2? Yet tac is not even in the list of "Useful Commands" on page 24. If reversing lines is just a programming example, it shouldn't be the lead example in a book like this, and if it is important, then you should mention that the problem has already been solved.
In the same vein, Wilson spends a fair amount of time in the text chapter illustrating code to parse command-line parameters, before admitting that libraries for the task abound in most languages. Granted, being able to snag a parameter or two off of the command-line without using a library can sometimes be handy; but implementing a more involved command-line parser is a problem that has already been abundantly solved.
Similarly, one of the examples in the chapter on regular expressions uses a regular expression to check to see if a string contains a valid IP address (pages 65-66). After showing how to use a regular expression to scan a dotted quad of digits, the text then admits that using a regular expression alone would lead to too much complexity, since it's hard to use a regular expression to check to see if a 1 to 3 digit number is less than 255 (or 127, which is what he uses in his code). So the example on page 66 ends up compiling and matching a regular expression like this:
pat = re.compile("(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})\\ .(\\d{1,3})")
. . .
m = pat.match(text)
for g in m.groups():
. . .
when a Python coder would more naturally just use:
quads = text.split('.')
for number in quads:
Sure, it's a good example of how to extract matched items, but the implication is that using a regular expression is the best way to extract extract numbers separated by dots, when in fact the Python has a simpler, easier and more reliable way to deal with it. Again a quick mention of the "easy" way to solve the problem would have been appropriate.
These kinds of issues are what keeps Data Crunching from being a great book. In spite of them, it is still a very good and useful book and Mark Wilson has done a good job with a topic all too often ignored. The general idea is great, and the principles, problems and solutions are well-explained and relevant. If data crunching is something you do, I would certainly recommend that you read this book, but with a somewhat critical eye.
You can purchase Data Crunching: Solve Everyday Problems Using Java, Python, and more. from bn.com. Slashdot welcomes readers' book reviews -- to see your own review here, read the book review guidelines, then visit the submission page.
Re:Sounds like it's missing something (Score:2)
Re:1992 Called.... (Score:1, Troll)
1992 called, they want their spermatozoid-turned-spotty-teenager back...
Amazon referral whore, mod down (Score:2, Interesting)
Re:Amazon referral whore, mod down (Score:2)
True, but it is indeed more than $7 cheaper than the bn.com link in the review.
I'm not 'kaleidojewel' nor do I know him/her, I'm just sayin...
Reviewer catches himself. (Score:5, Insightful)
Like nested queries, tac, isn't standard across all unix platforms.
Re:Reviewer catches himself. (Score:4, Interesting)
Re:Reviewer catches himself. (Score:2)
Re:Reviewer catches himself. (Score:4, Informative)
The GNU tail folks were pretty stubborn about keeping their file reversal in the tac command, wreaking havoc with cross platform scripts everywhere.
Re:Reviewer catches himself. (Score:2)
Re:Reviewer catches himself. (Score:3, Informative)
(next time I'll use preview)
Re:Astroturf @ /. (Score:2)
Dude, I like to start controversy as much as the next Tr...errr...guy, but you need to give some evidence.
quads = text.split('.') (Score:5, Insightful)
Re: quads = text.split('.') (Score:5, Informative)
if len(quads) != 4:
raise NotAnIPAddress
for member in quads:
try:
quad = int(member)
if quad < 0 or quad > 255:
raise NotValidQuad
except:
raise NotValidQuad
.
.
.
etc.
Re: quads = text.split('.') (Score:2, Informative)
You get an F on programming style
Re: quads = text.split('.') (Score:4, Informative)
Ah, but your last line explains everything: you teach programming. You don't do it for a living. Makes sense now.
Re: quads = text.split('.') (Score:2, Informative)
ip = getuserinput()
try: DoShitFromGrandparent()
except NotAnIPAddress:
print "Not an IP address, dumbass"
except NotValidQuad:
blah blah etc.
Re: quads = text.split('.') (Score:3, Informative)
Besides, as anoth
Re: quads = text.split('.') (Score:2)
In this case, it probably is.
No, it's abnormal input sure,
abnormal input is an exceptional condition by definition. Normal input is expected.
but that is a nasty and poor use of exceptions.
No it isn't.
You get an F on programming style
Your teaching credential needs revoking. As anybody worth their salt as a programmer would know that whether or not to handle something as an exception depends on the severity of the prob
Re: quads = text.split('.') (Score:1)
Re: quads = text.split('.') (Score:3, Informative)
This will match a valid IP address.
--Pete
Re: quads = text.split('.') (Score:2)
My philosophy (yes, everybody seems to have one these days) is this:
1. Define the rules for valid data.
2. Classify types of invalid data.
3. Break the rules down into a series of discrete steps.
4. Write the validation code, using the simplest semantics possible.
5. If data validation fails, try to match the problem to one of the invalid data classifications and throw an exception.
Yes, it sounds complex, but for the type
Re: quads = text.split('.') (Score:1)
if((@quads)=m:(\d+)\.(\d+)\.(\d+)\.(\d+):)
{
# do stuff
}
else
{
warn ( "bad address" )
}
QED
nested queries are a problem? (Score:5, Insightful)
Re:nested queries are a problem? (Score:2, Insightful)
Re:subqueries not a problem. (Score:2)
Re:nested queries are a problem? (Score:3, Insightful)
Not to fan the flames of another advocacy flamewar, but if MySQL hasn't caught up to a 13-year-old standard yet, it shouldn't be treated as a fully-functional SQL RDBMS.
If you're running MySQL you should be aware of its limitations yourself; it's not the book's job to bring them to your attention for you.
MySQL and data crunching (Score:3, Insightful)
I really expected to love Data Crunching. (Score:4, Funny)
Re:I really expected to love Data Crunching. (Score:1)
Matching a dotted quad (Score:1, Informative)
Just parse it already (Score:1)
Re:Just parse it already (Score:2)
Regex method is better (Score:2, Insightful)
Try passing in a string such as "I.like puppies!!!". A regex like the one the author provided will easily reject this, so there's no need to worry about checking for numericness, or any other strange characters at all. The regex in fact filters out EVERYthing so that all that has to be done is to check the actual numeric values for the right value range.
Re:Regex method is better (Score:2)
So... you're saying that the author doesn't like puppies? Wow. What a scrooge.
Reviewing the book or showing off geekiness? (Score:4, Insightful)
In the end, it is a matter of style, but just invoking text.split and trusting user input is... naive?!
Re:Reviewing the book or showing off geekiness? (Score:2)
The book shows the exact way I would do it; check for the maximum amount of structure in the IP adress, allowing only digits and dots, and then proceed to make sure 344.344.344.344 is not accepted. There is nothi
Learning concepts...bah! (Score:3, Funny)
You know I had that same problem with my Operating Systems class. That text by Tannenbaum goes through countless examples of what makes a good system, and then at the end he FINALLY admits that there is something called Unix that I can just go and install. What a waste learning all of those concepts!
Re:Learning concepts...bah! (Score:4, Informative)
Note really fair (Score:2)
Good Advice (Score:1)
Re:Good Advice (Score:4, Funny)
Indeed, having a critical eye can obviously make you blind.
Data "massaging"? (Score:1)
Re:Data "massaging"? (Score:3, Funny)
Re:Data "massaging"? (Score:1)
Not mentioning tac is not a dealbreaker (Score:4, Insightful)
I really wish a lot of Open Source developers would stop assuming that all of us have every GNU utility ever invented on our system. I can't tell you how difficult it is to get the average GNU autoconf program to compile correctly on Solaris or any flavor of enterprise Unix, simply because most authors assume they're writing platform-independent code, without realizing that GNU's M4 is different from System V M4. Also, differences between lex, flex, tar, and GNU tar abound. Please, for the love of god, don't assume that the tools you know and love on your Linux box at home are available or even installable on enterprise kit at work. Most company policies prevent the installation of these type of tools.
Re:Not mentioning tac is not a dealbreaker (Score:2)
Re:Not mentioning tac is not a dealbreaker (Score:3, Informative)
Haha, yeah, I don't even know how to go to SunFreeware [sunfreeware.com] or Blastwave [blastwave.org] and download a copy of GNU textutils in Solaris package format. You can think that if you want to, but in the enterprise world, every software package I want to install has to be approved by about 3 levels of management. They want to know what it does, why we need it, how much it costs, and who else will know how to maintain it after I leave the company. The chance of providing the
MySQL (Score:5, Informative)
Nested queries are *basic* database functionality. This is just one of many reasons why those of us who are experienced DBAs and database developers do not consider MySQL a database. The fact that there are lots of people trying to use it as such is irrelevant. The author didn't mention that the book is also missing a section of spreadsheets. Why not? Lots of people use spreadsheets as a database!
Re:MySQL (Score:1)
Re:MySQL (Score:3, Insightful)
Re:MySQL (Score:2)
Re:MySQL (Score:3, Insightful)
- if you're building a simple website, chances are you won't need any subqueries. Websites were (are?) the bread and butter of MySQL.
- the fact that the dbms lacks subquery support does not imply that the programmer lacks knowledge about them, nor does it imply that p
Re:MySQL (Score:3, Insightful)
You have got to be kidding me. Of course MySQL is a database. A database is simply a collection of data organized so that a computer program can access pieces of that data, something a MySQL database certainly does. This would make MySQL as a whole, a DBMS (DataBase Management System), as it is a collection of programs used for managing a database. Now, Is MySQL a RDBMS (Relational DBMS)? Well, that depends on your definition of RDBMS.
Re:MySQL (Score:2)
Sure Windows 3.11 can theoretically support multiple users and multitask but I would prefer W2k thank you.
Same is true with mysql. Mysql is popular because its free and is very multi-user friendly for ISP's with tons of user accounts so they bundle it with their hosting.
PostgreSQL is arguably alot better and also free. In asia its what most Linux users use by default. The tools for it are finally cominging out and
Summary in the first sentence (Score:1)
It's interesting the way that's written, because it tells me that you didn't like the book in the first sentence. If getting people to read the entire review was an issue, which is not the case here, then that would have been moved to the last paragraph.
Munging Alternative (Score:3, Informative)
See the Slashdot Review:
http://books.slashdot.org/article.pl?sid=01/04/26
Re:Munging Alternative (Score:1)
Who's the author? (Score:1)
author | Greg Wilson
And yet, in the final paragraph we see:
In spite of them, it is still a very good and useful book and Mark Wilson has done a good job with a topic all too often ignored.
What's going on?
More, or even Better Books on the Topic? (Score:2)