“Learning to Code” for Petroleum Engineers
(and Other Technical Types)

2016-06-26

A recent discussion on the SPE discussion board inspired me to jot down some thoughts on how a young (or experienced!) petroleum engineer—or for that matter any other technically skilled non-programmer—might best engage with “learning to code”.

The last several years have seen an explosion of interest in computer programming, driven perhaps by stories of Silicon Valley “unicorns” (startups valued over $1 billion) and by a feeling that computing skills may provide one of the few secure career paths in an uncertain future. “Coding bootcamps” have popped up across the map and appear to be turning a tidy profit; certainly they don't come cheap for attendees.

As petroleum engineers, we are most certainly interested right now in a little more job security! But just as importantly, programming skills can enable engineers to take on more challenging projects, apply data and algorithms to make better decisions, and provide a great way to exercise of the same mental muscles we need in our engineering work.

I've been programming longer than I've been an engineer, and software development is a big part of my current business as a data science consultant. In addition to using programming skills to perform statistical analyses and implement machine learning techniques for my clients, I've also worked with them to create custom software systems for some of their most challenging and unique problems. In this article, I'd like to share some advice from my experience, and invite all of you to share your own insights and suggestions in the comments.

This Isn't the Army...

...and you don't need to go to bootcamp. These programs promise a lot, but they're not aimed at you. While I'm skeptical of these bootcamps, I'm willing to grant that they may be right for some people. The model seems to be: spend $20,000 or so to live in a “dorm style” environment for a few weeks, learn a bit about one programming language, one server-side web framework, and one client-side web framework; build a dinky web application for a final project; get some interview placements; and hire on with Yet Another Web App Startup.

But as engineers, we're already used to putting in the effort to learn hard things. We don't need to simulate our college living conditions to get back into a growth mindset, and all the resources we could possibly need to learn are available on the Web or (horror of horrors) in the pages of a book.

And we're not just interested in “coding” as an end in itself. In fact, I believe there are just a few main reasons an engineer may want to take up programming.

Have Data, Will Travel

We are living in the age of “big data” and our spreadsheets won't quite cut it anymore. One of the strongest motivators for a modern engineer to take up programming is to engage with the world of data science. The field, which is admittedly a bit oversaturated with hype and buzzwords at the moment, combines statistics with computer science, applying a wide variety of techniques to discover, interpret, and act on patterns in data.

Thanks in part to the hype, the barrier to entry is lower than ever. There are many online courses that provide a simultaneous introduction to basic statistical technique and basic programming skills.

Most of these will use the R programming language, and it's a track I recommend as well. R has a lot of shortcomings as a programming language, but for data science—and especially for new learners—these pale by comparison to two key strengths.

First, network effects: there are a huge number of high-quality resources available online for learning R due to its user base.

Second, more network effects: since R is commonly used by practicing statisticians, machine learning researchers, and visualization designers, free and open-source implementations are available on CRAN for almost any algorithm, visualization, or technique imaginable. Want to try using random forests to predict production performance from completion parameters and petrophysical properties? You're just an install.packages("randomForest") away.

So how can an engineer get started with R and statistical programming? The first thing I'd recommend is downloading the R interpreter (that is, the program that implements the language) from a CRAN mirror; you'll need to follow the links for your operating system. If you've programmed before in a language without an interactive interpreter, you're in for a treat. R lets the programmer run statements and evaluate expressions interactively, and see the results immediately. This interactivity (sometimes called a REPL: “read-eval-print loop”) is great for learning, as it provides instant feedback and a low-overhead environment in which to tinker.

When it comes to courses and books, I'm afraid most of my recommendations are second- or third-hand. When I learned R, the best available option was to read straight through the manual. This still isn't a bad choice, as it's well written and comprehensive. Luckily for today's beginning programmer, there are now more accessible options.

The R Cookbook is a great reference for engineers, and one I can recommend first-hand. While it won't “teach you R” in one go, it's organized as a quick task-oriented reference: “how do I carry out a linear regression?” etc.

The Data Science Specialization courses from Coursera cover R programming and some useful techniques; they come generally well-recommended for beginners. Don't be misled—you don't have to pay for the courses unless you want a certificate (and luckily our industry is not big on certificates!) but instead you can “audit” them by choosing the courses you are interested in from the Johns Hopkins course catalog.

Labor-Saving Devices

Another great reason to take up programming as an engineer is to automate your way out of tedious work! Historically, most of us find our way to programming by this road; it's how I first started applying software development skills to my engineering work. We already build spreadsheets or even write VBA (Visual Basic for Applications) macros to simplify complex calculations or data transformations.

While VBA is frequently taught in engineering curriculums, I can't recommend it for beginning programmers. It's not that, as the common stereotype goes, I don't think it's a “real language”—rather, it's that I think it's a real bad language.

VBA doesn't provide a lot of tools for abstraction—that is, for modeling complex systems as interactions of simpler systems via well-defined interfaces. This is the real heart of software engineering just as it is the heart of other engineering disciplines: functional decomposition, modular design, and a logical approach to problem-solving are how we successfully address problems and build long-lasting, reliable, maintainable systems.

VBA can be written safely and used to build well-designed systems, but it requires a ton of boilerplate and an endless series of workarounds; in short you will be working “against the grain” of the language. Come back to it when you've got a few more tricks under your belt, and you'll be a macro master in no time—but as a first language it's an easy vehicle for bad habits and a dead-end for learning.

What I recommend instead is for the new engineer-programmer to learn Python, one of the most popular modern programming languages, and easily one of the most beginner-friendly. Python provides a readable syntax, a well-designed set of abstraction techniques supporting various programming paradigms (procedural, object-oriented, functional), and an expansive standard library with built-in high-quality implementations of the “bread-and-butter” data structures. The Python “batteries included” philosophy means that libraries for many common tasks are included out of the box, there's also a huge variety of free and open-source libraries available for everything from writing web applications to manipulating Excel spreadsheets.

As with R, it's easy to download the latest version of Python and start playing around in the interactive interpreter. As a very popular beginning language—but certainly by no means a language just for beginners—there are a huge variety of learning resources available.

Automate the Boring Stuff with Python is not just a great title I almost stole for this section, it also comes highly recommended. The books covers some very practical topics of interest to engineers, including Excel automation, and teaches the Python language along the way.

Coursera, Udacity, and a few others also offer free online courses; I've not taken any of these myself but I'd recommend bouncing between a few until you find something that “clicks”. The Coursera Learn to Program: the Fundamentals course in particular looks promising.

In general, I'd recommend finding resources that use Python 3 (the newest major revision of the language, which fixes some “warts” in the previous design) and cover fundamentals of algorithms and data structures in some depth rather than jumping into flashy “fun” topics like writing games (I'm asking you to eat your vegetables, but I promise it will be worth it).

“Real Programmers”

I've laid out two possible paths: learning R for the budding data scientist, and jumping into Python for the automation-seeking engineer. To wrap up, I'd like to comment on some of the beginner-hostile attitudes and ideas that can attach themselves to these topics, and provide some final—if a bit random—practical advice.

First, there's a lot of programming language chauvinism on the internet: “real programmers” write in C, or in Ruby, or in assembly, or... whatever. Well, if you've ever built a spreadsheet to carry out a calculation, you're as real a programmer as any; from there it's all a matter of ongoing learning and experience. All programming languages are not created equal, and I won't pretend they are: there are some I truly and deeply loathe. But computation is computation, and languages are more-or-less convenient notations for expressing the same fundamental ideas. Learn the fundamentals, and leave the holy wars to the fanatics.

Second, the current hype is strongly focused on programming for the web; reading job postings and bootcamp pitches one could be forgiven for thinking that web applications and mobile “apps” were the sum of computer science. These topics are fascinating, but a good grounding in the basics of programming will equip you to learn the specific details of the latest web application framework or iOS library with ease. Again, learn the fundamentals, and the rest will follow.

Finally, I'd like to conclude with my opinionated list of what “real programmers” should strive to master, regardless of specific technologies or applications:

I've gone well over my intended word count, but I hope at least a few of you will find some value in my experience. Please join the conversation in the comments with your own insights, comments, or questions.

Happy hacking!


This blog will never track you, collect your data, or serve ads. If you'd like to support the blog, consider our tip jars.

DOGE: DPZnAPuvYAfCfHZaBjnEkZkdBn4trJbKUK

BTC: bc1qjtdl3zdjfelgpru2y3epa56v5l42c6g9qylmjx

ETH: 0xAf93BaFF53b58D2CA4D2b0F3F5ec79339f6b59F7