#1,480 in Computers & technology books
Use arrows to jump to the previous/next product

Reddit mentions of Python in a Nutshell: A Desktop Quick Reference

Sentiment score: 2
Reddit mentions: 2

We found 2 Reddit mentions of Python in a Nutshell: A Desktop Quick Reference. Here are the top ones.

Python in a Nutshell: A Desktop Quick Reference
Buying options
View on Amazon.com
or
O Reilly Media
Specs:
Height9 Inches
Length6 Inches
Number of items1
Weight2.2 Pounds
Width1.54 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 2 comments on Python in a Nutshell: A Desktop Quick Reference:

u/commentsrus · 4 pointsr/badeconomics

I work with econ/stat people who are great at running and interpreting models and thinking about causality issues, but don't know much about programming. They've specialized, I get it, but in the future teams would benefit from everyone knowing some basics. It'll also make stats people more productive and help prevent errors. Also also, econ, other sciences, and the policy world really should embrace open source, open science, open access, etc.

But anyway, here's how to do it.

Below are a bunch of random resources. If you're looking for free courses, Software Carpentry has a bunch on the topics listed below and more. The terminal and Bash, Python, R, Matlab, Git, SQL, GNU Make, continuous integration, and data visualization. Data Carpentry has lessons for some of these topics, geared more toward social scientists. Apparently they're developing a course for doing econ with Bash(?). If you're into macro or computational stuff and want to learn Python, can't do wrong with QuantEcon.

I'll echo what the other guy said. If you have a Mac, cool. If not, consider dual booting with linux. It has a reputation for being difficult to use, but Ubuntu, Mint, and ElementaryOS are all very simple and work just like what you're used to in Proprietary World. It's possible to do the following with Windows, but requires a more setup work.

Learn to use the terminal (this is the point of using Mac or Linux, they come with a terminal and unix tools). Here's a decent book on the basics. Learn to navigate around your filesystem, run programs from the terminal, and use a bit of Bash. You can probably skip the chapters on actually programming with Bash. Bash as a programming language is cool, but not super necessary, and kinda quirky. It wouldn't be a waste of time though, since you can do certain things in Bash very quickly and easily. And you'll be a master haxxer.

Check out Data Science at the Command Line for a decent overview of stats programming in a linux environment. Goes over basic Python and R, and other tools to make life simple. There's also The Plain Person's Guide to Plain Text Social Science, geared toward people who do science but may not do programming atm. Covers more useful tools.

Learn Python or R or both. If Python, here. If R, here. If you're into ML, here for Python and possibly here for R but the code may be dated. Still, that book is The intro book for ML.

Learn Git. You should be in the habit of tracking changes you make to your code and the data/results it produces, especially if your data is being shared with anyone. If you use R, here's a great intro to Git and RStudio's fantastic Git integration.

Learn SQL. This one's harder to pick up on your own, at home, since you need a database set up to query. Look at the software/data carpentry courses.

Learn Docker. It makes your analyses/projects more shareable and--gasp--more reproducible (though I've gotten shit in the past for this, so let's compromise and say it helps but doesn't GUARANTEE reproducibility). This one is more optional than the others.

Once you have the basics down, you can do what interests you and learn best practices. Perhaps you want to know about Efficient R Programming (and general best practices). Or best practices in Python and more comprehensive coverage. Or how to make reports and papers with RMarkdown (want to make a paper that looks like it's published in AER? there's a template for that in Rmd).

u/TragicGyro · 1 pointr/computerscience

Python in a Nutshell: A Desktop Quick Reference https://www.amazon.com/dp/144939292X/ref=cm_sw_r_cp_api_R7rVAb4GP2ADN

I personally think these are great for both learning and referencing. It is more expensive than I thought it would be but I’m sure you can find a good deal somewhere. Honestly you are likely to find success with any highly rated Python book on Amazon. Try to look through a few pages of some different ones and see what you prefer. Also make sure you specify which version of Python you are using (2.x or 3.x). Best of luck!