DEV Community

Mustapha Yusuf
Mustapha Yusuf

Posted on

Why Economists Might Actually Make Better Data Scientists

I built a small app called StatMate (getstatmate.com), and while working on it I kept running into the same realization over and over. A lot of data science is econometrics wearing a different name tag. Nobody tells economists this early enough, and I think it's part of why so many of them assume data science is some separate, more advanced world they're not qualified to enter.

It isn't. It's mostly the same tools with a rebrand.

Same math, different vocabulary

If you studied economics, you already know linear regression and logistic regression. You just learned them as core parts of econometrics, not as "machine learning algorithms," which is what the data science world calls them. Same equations. Same assumptions. Different label on the box.

It goes further than that. In economics, when you run a regression, you talk about independent variables and dependent variables. In data science, the exact same thing gets called features and labels, or features and the target variable. It's not a different concept. It's a different dialect for describing the same relationship between inputs and an outcome.

A few more that trip people up:

In econometrics you talk about coefficients. In data science, people call the same numbers weights or parameters, especially once you're working with anything beyond a simple regression.

Economists estimate a model. Data scientists train a model. Same process, fitting a function to data so it predicts well, just described with a different verb.

Economists check goodness of fit, often with R squared. Data scientists check model performance using accuracy, precision, recall, or other evaluation metrics depending on the problem. Different names, same underlying question: how well does this thing actually predict reality.

Multicollinearity is a term every economics student learns to fear. In data science, the same problem shows up as feature correlation or redundant features, and it causes the exact same headaches.

Even overfitting, one of the most talked about problems in machine learning, is something econometrics has dealt with for decades under different framing, usually tied to model specification and out of sample prediction.

Where economists actually have an edge

Here's the part that gets overlooked. Economists are trained to obsess over causality, not just correlation. Concepts like instrumental variables, difference in differences, and regression discontinuity exist because economists were forced to ask a harder question than "does this predict well." They had to ask "does this actually cause the outcome, or are we fooling ourselves with a pattern in the data."

A lot of data science, especially outside of causal inference specific work, is comfortable stopping at prediction. Economists are trained to be suspicious of prediction until they've ruled out confounding variables and reverse causality. That instinct alone is worth more than people give it credit for.

Why this matters

I think the real issue is that economics students rarely get told, explicitly, that they already have the statistical foundation for data science. They learn regression, hypothesis testing, and causal reasoning inside an economics classroom, then look at a data science job posting and see words like features, labels, and model training, and assume they're starting from zero.

They're not starting from zero. They're starting from a translation problem.

If more economists understood that machine learning algorithm often just means regression with a new name, and that a feature is just an independent variable that got renamed somewhere along the way, the field would feel a lot less intimidating to walk into. Data science is broader than econometrics, no argument there, but the core statistical spine underneath a huge amount of it is something economists already know cold.

That gap between the two vocabularies is part of what pushed me to build StatMate in the first place, something that makes the statistical side of this world less about memorizing new terminology and more about actually understanding what's happening underneath it.

If the tools are the actual blocker

Half the time, it's not even the concepts that scare people off. It's the tools. Someone understands regression perfectly well from their economics degree, then opens up a statistical package with a wall of syntax and menus and suddenly feels like a beginner again, even though the stats knowledge was never the problem.

That's the specific gap I built StatMate (getstatmate.com) to close. If you already get the underlying logic, whether from economics, econometrics, or just self study, and the thing holding you back is fighting with clunky statistical software instead of actually working with your data, it's worth a look. The goal was to strip out the friction and let the statistics speak for themselves instead of getting buried under a difficult interface.


I work on AI training and evaluation, and I built StatMate (getstatmate.com), a tool aimed at making statistical analysis more approachable for people crossing over from fields like economics into data driven work.

Top comments (0)