Eric J Ma's Website

R for Statistics, Python for Data Processing?

written by Eric J. Ma on 2016-03-13 | tags: python data science statistics R


I’ve heard this refrain many times. However, the distinction never really made sense to me.

R and Python are merely programming languages. You don’t have to do stats in R and data processing in Python. You can do data processing in R, and statistics in Python.

What is R? It’s a programming language designed by statisticians, and so there’s tons of one-liner functions to do stats easily.

What is Python? It’s a programming language that’s really well-designed for general purpose computing, so it’s really expressive, and others can build tools on top of it.

What is data processing? I don’t think I can do justice to its definition here, but I’ll offer my own simple take: making data usable for other programming functions.

What is statistics? I think statistics, at its core, is really about describing/summarizing data, and figuring out how probable our data came from some model of randomness. That’s all it is, and it’s all about playing with numbers, really. There’s nothing more than that. Technically, you can do statistics in any programming language, because technically, all programming languages deal with numbers...

Which brings me to the point I want to make - as long as you have data, and you’re doing data science, you technically can use any language for it; the differences are not in the language itself, but in the ecosystem, ease-of-use, and other aspects.

Other bloggers have written about the benefits of using a single language, which include:

  1. No cognitive costs associated with syntax switching (the biggest reason for me).
  2. No need to worry about interfacing between languages.
  3. No need to pepper file I/O calls throughout the code for each portion of the project that uses its own language.
So how do you choose? Here’s my criteria (beyond simply Python and R):

  1. What is the larger context of your project? Do you have colleagues you are interfacing with? What languages are they using?
  2. Are there packages that allow you to do stuff related to your project in a quick-and-dirty fashion?
  3. Is the language able to use other language’s packages?
  4. How mature is the package ecosystem for your language? Do you foresee using other packages as your project expands?
So I hope the point is clear: it isn’t so much that "R is for statistics and Python is for data processing". I think commoner programmers have to get that dogma out of their heads. It’s simply that R was designed by statisticians for doing statistics, while an ecosystem of Python tools sprung up to do data processing. Nowadays, as the R-blogger mentioned, Python can also do a ton of stuff that R can do, because packages are being written that replicate R package functionality and more, such as how Continuum Analytics (awesome company!) wrote the bokeh package that allows us Pythonistas to deploy web-based data visualizations. Likewise, R can do a ton of stuff that used to be the domain of Python, and it's getting a lot of corporate support from Microsoft. So choose according to your needs.

After all, as Wes McKinney wrote, the real problem isn't R vs. Python. It's the ability to move data seamlessly.


I send out a newsletter with tips and tools for data scientists. Come check it out at Substack.

If you would like to sponsor the coffee that goes into making my posts, please consider GitHub Sponsors!

Finally, I do free 30-minute GenAI strategy calls for organizations who are seeking guidance on how to best leverage this technology. Consider booking a call on Calendly if you're interested!