Questions tagged [visualization]

Constructing meaningful and useful graphical representations of data. (If your question is only about how to get particular software to produce a specific effect, then it is likely not on topic here.)

Overview

Data visualization refers to techniques for presenting results in graphical form, such as histograms, scatterplots, or boxplots. Data visualization is a special challenge for data with high dimensionality.

If your question is only about how to get particular software to produce a specific effect, then it is likely not on topic here. Programming questions (for example, in Python, or in R with ggplot, etc.) for which you can supply a reproducible example are usually welcomed on StackOverflow.

References

The following question contains references to data visualization resources:

699 questions
22
votes
3 answers

How do I create a complex Radar Chart?

So, I want to create a Player Profile Radar Chart something like this: Not only the scale of each variable different, but also I want a reversed scale for some statistics like the 'dispossessed' stat, where less actually means good. One solution…
Kunal Dharamsi
  • 323
  • 1
  • 2
  • 4
10
votes
1 answer

How do I figure out if subsets can be plotted in a normal Euler diagram?

In some cases, it may be impossible to draw Euler diagrams with overlapping circles to represent all the overlapping subsets in the correct proportions. This type of data then requires using polygons or other figures to represent each set. When…
asheeshr
  • 654
  • 1
  • 5
  • 13
8
votes
1 answer

Anybody know what this type of visualisation is called?

I think this is a pretty cool way to visualise changes in values but I can’t find any name for this type of visualisation. I Source: https://www.economist.com/graphic-detail/2020/07/28/americans-are-getting-more-nervous-about-what-they-say-in-public
K G
  • 183
  • 3
7
votes
6 answers

Why do we need data scientists if there are websites like this?

Very basic question about data science as I'm a beginner. I noticed that there are sites like illustrated below, that help visualize and analyze data so that the business owner can have a better understanding of their business. My question is that…
Mac_79
  • 179
  • 3
7
votes
2 answers

How do you plot overlapping durations?

My data contains a set of start times and duration for an action. I would like to plot this so that for a given time slice I can see how many actions are active. I'm currently thinking of this as a histogram with time on the x axis and number of…
Jeff King
  • 171
  • 4
6
votes
1 answer

Visualizing large number of points as a 3D density map

The result of my computational simulation is a (time-dependent) system of large number (~100k) of moving points in a confined space. Each point has its own Cartesian coordinates as well as a weight (w) in the form of $(x_i,y_i,z_i;w_i)$. I'm…
deeep
  • 61
  • 1
6
votes
2 answers

Visualizing 28 different variables with 28 different colors?

ColorBrewer seems to be very useful in selecting a color pallet to represent factors that have up to 12 possible values. I have 28. Is it a horrible idea to represent 28 variables with color? If so, could you suggest an alternative visual…
kmace
  • 161
  • 2
4
votes
2 answers

How to visualize categorical data over time?

I'm visualizing results from lab tests. Most of these results are numerical and therefore easily communicated using line graphs, where the x-axis is time and the y-axis is determined by the range of possible values, like [0, 100]. EDIT: To be clear,…
jd87
  • 141
  • 3
4
votes
2 answers

How to visualize time-intervals

I have a pandas table with a start and end time for each entry. They don't intersect, but range from seconds to days. I want to visualize them, ideally the x-Axis being the date on which they occus, and the y-axis the time. However, I haven't found…
Astronguem
  • 41
  • 2
3
votes
0 answers

How to visualize grouped clusters in a graph

I was trying to use Gephi, which seems to have a 'group' feature in some of the WIKI explanations, but actually does not appear in my GUI. There is a tool that creates groups from partitions, but it ignores the node attributes when creating those…
001001
  • 131
  • 3
3
votes
2 answers

Can we visualize a feature space with 4 or more dimensions?

I have a dataset with 6 independent variables, I have trained this dataset on a Support Vector Machine. Is there is a way in python or R to visualize the feature space with the hyperplane? Or for example, can I plot many 2D plots such that every…
John adams
  • 221
  • 1
  • 9
2
votes
0 answers

Ideas to visualise historical map data/transportation/logistics/scheduled events?

I have many data points which span over a decade and they look similar to this: Maybe someone has some cool interactive and/or not interactive ideas on nice representations of such data? I was thinking of visualizing the data on the map, but I feel…
123Lako
  • 21
  • 2
2
votes
0 answers

Tools/techniques for exploring 2D, 3D level sets in high D spaces

I have some 5D data which I need to visually explore. Currently, I am plotting a 3D grid of 2D graphs for various values. Basically, I have N images each containing an NxN matrix of graphs... kind of like a scatter matrix. The $x$ and $y$ axes…
Him
  • 176
  • 5
2
votes
1 answer

What is the name of this visualization with a circle and internal arcs?

I came across this visualization where there is a circle with data points on the circle and internal lines (arcs or edges) between the points on the circle. What is the name of this type of visualization? How would I generate it from a 2-D table…
2
votes
3 answers

Visualize frequency of 5 Boolean variables together

I have a data set with 5 variables, a b c d e 1 0 0 1 0 0 1 0 1 1 0 1 1 0 0 0 0 0 1 0 1 1 1 0 0 0 1 1 0 1 1 0 1 0 0 1 0 0 1 1 0 1 0 1 1 0 0 1 1 0 I am only interested in the percentages of occurrence, occurrence, | a | b | c | d | e | .4 | .5 | .5 |…
myradio
  • 131
  • 4
1
2 3 4 5