Most of us work together with quite a lot of knowledge visualizations each day. For instance, you would possibly diligently observe your bodily exercise via bar graphs in your good watch. Maybe you test your climate app to see how the temperature will fluctuate all through the day. Or possibly you’re a stickler about budgeting and maintain a pie chart of your bills. All of all these knowledge visualizations permit you to discover the untold tales hidden in knowledge and convey it to life.
In the case of creating a knowledge visualization, understanding which kind of chart to make use of is essential to successfully and precisely speaking your data and knowledge. Choosing the proper chart in the end is dependent upon your dataset and the query you’re making an attempt to reply, explains Codecademy Senior Curriculum Developer Eva Sibinga. However you additionally should be conscious of your viewers; knowledge visualizations might help make clear advanced topics and concepts, however you would possibly lose your viewers in case your chart is filled with an excessive amount of information or troublesome to learn.
Understanding how and when to make use of a sure visualization is a useful talent for anybody who has to inform a narrative with knowledge — from Enterprise Intelligence Knowledge Analysts who illustrate the patterns and developments in firm knowledge, to Entrepreneurs and Content material Creators who must show the effectiveness of their newest campaigns. In our free course Knowledge Visualization with Python, we’ll present you the best way to make informative, enlightening, and visually partaking knowledge visualizations with industry-standard Python libraries seaborn and matplotlib.
Forward, we’ll check out a few of the hottest knowledge visualization charts and break down when you must use them.
Study one thing new without cost
1. Bar charts
Bar charts use rectangular bars with totally different heights to signify and evaluate values and classes. They’re an effective way to visualise knowledge that may be divided into totally different classes. Say we’re working an ice cream store, and we wish to see which flavors are the preferred. With a bar chart (as seen within the instance under), you possibly can simply manage the variety of gross sales for every taste side-by-side.

Alternatively, you can additionally use bar charts to check gross sales between totally different days of the week, totally different merchandise (cups vs. cones), and even the gross sales of various crew members. Need to get higher at creating bar charts? In our apply undertaking Exploring Mushrooms, you’ll create a bar chart that showcases an intensive dataset of mushroom varieties.
2. Line charts
Line charts are widespread knowledge visualizations that plot knowledge factors alongside steady strains. You would possibly’ve seen them utilized by information shops to assist illustrate fluctuations in inventory costs or the variety of Covid circumstances in an space. “Line charts are sometimes the proper choice for displaying data over time,” Eva says.
Going again to our imaginary ice cream enterprise, say we needed to take it a step additional and see which flavors have been the preferred over the previous yr utilizing a line graph. “So on this case, we’d see a line chart that follows a seasonal pattern with gross sales which can be decrease within the winter and better in the summertime,” Eva says.

3. Pie charts
Persevering with with our ice cream store instance, what if we needed to summarize categorical knowledge, just like the gross sales of various sized containers, prime spending classes, or gross sales per location? Any of those might be a great alternative to make use of a pie chart, as a result of they’re nice instruments for visualizing the divisions between the elements of a complete.
You would possibly wish to shrink back from utilizing pie charts you probably have a dataset with a number of variables, or you should exactly illustrate minute variations. “It is dependent upon the dataset,” Eva says. “If the sections are simple to differentiate, and also you don’t want anyone to stroll away with precise numbers, they’re nice. However you probably have loads of data and folks must know that is 15% versus 20%, that’s tougher to differentiate.”

4. Scatter plots
Typically you wish to transcend simply the numbers and illustrate the correlations and relationships between variables. For instance, say we wish to see how the climate impacts ice cream gross sales. Eva suggests utilizing a scatter plot, which distributes knowledge factors alongside a graph that has each an X and Y axis containing steady numeric variables.
What do you discover? “We would anticipate a correlation between hotter temperatures and ice cream gross sales, however a knowledge visualization might assist us perceive that higher, and a scatterplot could be an amazing selection,” Eva says.

5. Histogram
Lastly, we now have histograms, which we are able to use to measure the distribution of 1 variable in a dataset, Eva says. Histograms seem like bar charts, however there’s a key distinction: Histograms assist us visualize the frequency of 1 given variable, whereas a bar chart compares totally different classes. With a histogram, we might illustrate the variety of cones bought over the course of a single day — so our variable could be the variety of cones bought, and we might break it down into one-hour intervals, like so:

Try our apply undertaking Touring to Acadia in order for you extra apply with histograms.
Study extra about knowledge visualization
These are just some examples of the sorts of knowledge visualizations you can also make as you study to code. If you wish to study extra about various kinds of knowledge visualizations and their best-use circumstances, take a look at our free course Knowledge Visualization with Python. Then, if you wish to take your expertise even additional, strive constructing your personal knowledge viz undertaking.
Eva suggests constructing a undertaking round a subject you’re keen about (whether or not that’s Beyoncé’s music profession or NFL statistics). Having a real curiosity or ardour for the subject will assist maintain you targeted and motivated while you’re doing the less-engaging duties (like rotating axis labels) or caught on an issue. “In the event you care about the subject material, you’re gonna Google it; you’re gonna go to Stack Overflow,” she says. “You’re going to learn via the solutions and documentation since you need the chart to look good.”
And as you’re creating your undertaking, keep in mind to stay to finest knowledge visualization practices. In our course Rules of Knowledge Literacy, you’ll study extra about how colour, scale, and labeling impacts a knowledge visualization. “Each design selection issues and might both assist or hinder your knowledge visualization,” Eva says. In the event you need assistance avoiding widespread pitfalls, take a look at our record of visualization errors to keep away from.