Pandas vs. SQL – Part 1: The Food Court and the Michelin-Style Restaurant

Aditya Parameswaran

Jun 28, 2022 7 min read

Articles
Pandas vs. SQL – Part 1: The Food Court and the Michelin-Style Restaurant image

TLDR: This is the first in a series of blog posts that contrast Pandas vs. SQL (dataframes vs. databases). Both dataframes and databases are, in fact, old ideas, dating back multiple decades. Databases opt for scalability, robustness, and efficiency, while Pandas opts for conciseness, flexibility, and convenience. Can we even hope for the best of both worlds? Yes!

Every few months, there is a tweet about Pandas vs. SQL, like this one in 2020:

or this one:


and then this one earlier this month:


All of these tweets ask essentially the same question: Can Pandas/Python ever be better than SQL/databases for the purposes of data work—and if so, when? Clearly, the millions of data scientists who use Pandas can’t all be wrong in their preferred choice of tool—but it’s hard to find a resource that answers this question in a definitive manner.

So we decided to write a series of blog posts that explore this question, comparing Pandas vs. SQL/databases. This is the first, and we will release subsequent posts in the coming weeks. Even if you don’t read any of the posts, the punchline is this: Both dataframes and databases have been around in some form for multiple decades. And both have an essential place in the arena of data analysis and data science!

Anyway, onto the topic of this particular blog post. Mmm.. who doesn’t love a good gastronomic analogy? Let’s dig in.

To begin, let’s talk about relational databases—a mature, multi-decades old technology, with a market cap of hundreds of billions of dollars, with offerings from the likes of Snowflake, Databricks, Oracle, Amazon, Microsoft, and Google. We all love relational databases.

Databases allow you to represent data in intuitive collections called relations with a predefined structure, or schema. Databases let you operate on relations using SQL, or “Structured Query Language,” a language invented in IBM in the 1970s, and often referred to as “intergalactic dataspeak.” SQL and relational databases have stood the test of time, despite many attempts to dethrone them, including the noSQL movement from the mid-2000s. Databases will outlive us all.

Photo of a fine-dining restaurant

A fine dining restaurant. I’ve yet to visit one where they make swans out of napkins. Maybe one day.

It turns out that a relational database is very much like a Michelin-starred fine-dining restaurant. This type of restaurant is very formal: You need to wear a shirt or a dress, not shorts or a t-shirtmuch like your database, which requires a formal schema before you operate on your data. There are not a lot of options on the menu: Often it is a fixed menu with a small, carefully curated set of optionsmuch like your database, which only supports a small handful of keywords in SQL (SELECT-FROM-WHERE-GROUP-BY …). But for what it does, fine-dining restaurantslike databasesare finely tuned, efficient, and effective.

Alternatively, let’s consider a very different beast, Pandas, the popular dataframe library for data science.

Pandas is a fast, powerful, flexible, and easy-to-use open source data analysis and manipulation tool. Pandas’ origins stem from the statistics community, which previously developed the underlying dataframe abstraction in S in the 1990s and R in 2000s, before it was ported to Python in 2008. So dataframes have been around in some form—explicitly designed for the purpose of statistical data analysis and data science—for more than three decades!

Pandas is incredibly popular among data scientists and data analysts, being downloaded 30M times a week. In fact, Python is now the world’s fastest growing language due, in large part, to Pandas. And in various articles, it has been referred to as the most important or the most popular tool in data science.

So how do Pandas dataframes compare to databases? The Pandas dataframe system is similar to databases, but also different. Unlike database relations, within a dataframe, Pandas allows for mixed types in a column and maintains a notion of order. Dataframes also support row labels, in addition to column labels, making it easy to reference your data. And pandas supports 600+ functions spanning data cleaning, preparation, transformation, and summarization, that let you do pretty much anything imaginable to your data, drawing from relations, matrices (linear algebra), and spreadsheets—spanning data cleaning, transformation, preparation, featurization, and exploration.

Dataframe data model and 600+ functions

So, if relational databases are like Michelin-starred restaurants, Pandas is very much like a food court. Food courts don’t care what you’re wearing—just like Pandas, which doesn’t need you to structure or clean your data before loading it in. You can order what you like, in bits and pieces—just like Pandas, which lets you pose your query in incremental steps. You can even do ungodly things—like mix sushi and fries. You can even put ice cream on your fries. You may get some strange looks, but nobody can stop you. Everyone is happy from the oldest person to the youngest!

The quintessential food court: from Ben and Jerrys to Panda Express—no relation

The quintessential food court: from Ben and Jerry’s to Panda Express—no relation

Let’s contrast our database fine-dining experience with the Pandas food court. In terms of convenience, relational databases require you to order your entire SELECT-FROM-WHERE query at once; Pandas lets you place your order one item at a time, inspect it, and then order more if you’d like. Our fine-dining database requires a formal schema before you can even get in the door (you’ll get kicked out if you’re wearing shorts!); the Pandas food court doesn’t care—it’s totally fine with mixed types in a column, which comes in handy during the early stages of data cleaning. Pandas is also very egalitarian: It treats rows and columns the same, and data and metadata the same; good luck getting that treatment from your fine-dining database! Our fine-dining database only has a few things on the menu—your SELECT-FROM-WHERE query; Pandas has everything imaginable, from sushi to burgers to ice cream, with 600+ open-source functions contributed by data scientists.

Table showing a comparison across various features

Comparing databases to pandas

So what’s the downside? Unfortunately, despite the many positives of the Pandas API, the Pandas implementation doesn’t really scale since it evolved in an ad-hoc manner without any formal grounding. It only supports single-threaded execution, so even running it on a beefy cluster doesn’t give you any benefits. Since it operates entirely in memory and makes many copies, it often throws out-of-memory (OOM) errors. And finally, there’s no real query optimization across multiple pandas operators in a sequence. So what you often have happening is the following: you sample your data, explore with Pandas, then rewrite your workflow to operate at scale.

Rewriting your Pandas workflow to run at scale is exceedingly common

This, unfortunately, is way too common.

So if we were to contrast Pandas vs. big data frameworks like databases, these big data frameworks score highly on the performance spectrum, spanning scalability, robustness and efficiency. As we will explore in subsequent blog posts, Pandas scores highly on the ease-of-use spectrum, encompassing conciseness, flexibility and convenience.

Comparing pandas and big data frameworks

Comparing Pandas and big data frameworks

One open question is whether we can get both. Can we preserve the Pandas API but change the implementation in order to get scalability, robustness, and efficiency? Turns out, the answer is yes. One possible solution that we’ve been working towards is Modin. Modin is a drop-in replacement for Pandas… so one simply changes the import statement, and the Pandas script runs as is, but faster. Modin is able to achieve this scalability via our multi-year research and development on adapting database-like techniques to Pandas.

In the next post in our Pandas vs. SQL series (post 2 of 4), we argue Pandas is the more concise language. Read more here!

About Ponder

Ponder’s mission is to improve user productivity without changing their workflows, and we do this by letting you run data science tools like pandas, at scale and securely, directly in your data warehouse or database.

It shouldn’t matter whether your data is small, medium, or large: the same data pipelines should run as-is, without any additional effort from the user.

Try Ponder Today

Start running pandas and NumPy in your database within minutes!

Get started

Ready to level up your Pandas game?

Try Ponder now