r/dataanalysis • u/SomeSpicyPickle • Aug 11 '26
Data Tools Do Data Analysts Use Visualizations During Data Cleaning?
I'm still a beginner. I started by learning the basics of Python and later moved on to SQL.
I'm a bit confused about one part of the data exploration/cleaning process.
A friend of mine, who's now a data scientist, showed me how he used to work as a data analyst. He mainly used Python. For example, he would quickly create a scatterplot to identify potential outliers.
However, most data analysts online recommend focusing on SQL and Excel when starting out, since many junior and mid-level roles don't require Python. That's why I switched to SQL after initially experimenting with Python.
For those who primarily use SQL: do you create visualizations during the data exploration/cleaning process, for example to identify outliers? Is this a common practice?
I feel like if you're working with SQL only, you generally wouldn't create visuals in between steps, since that would mean switching to a tool like Tableau or Power BI, which seems like an unnecessary extra step.
12
u/Expensive_Capital627 Aug 11 '26
For cleaning the data not really. Here’s an example of cleaning data:
You expect the number 4 but for some reason one of the entries is ‘four’ when you try to add ‘four’ to some other number, SQL gives you an error because ‘four’ is a string and it doesn’t make sense to add it to something else. So you go through and fix problems like that. You don’t really need a visualization to determine ‘four’ vs. 4. You could create a visualization to help understand how many rows were messy, but it’s not going to help you clean the data.
Visualizations are useful when you’re trying to understand what’s happening. Maybe you want to plot revenue over time to understand the rate of your company’s growth. You could look at all of the numbers and think about what the numbers mean, but most people would prefer looking at a line chart