Top "Data-visualization" questions

Data visualization is the study of the visual representation of data.

How to set values in x axis MSChart using C#

I have these XY values: Series S1 = new Series() S1.Points.AddXY(9, 25); S1.Points.AddXY(10, 35); S1.Points.AddXY(11, 15); chart1.Series.…

c# .net winforms data-visualization mschart
Drawing a correlation graph in matplotlib

Suppose I have a data set of discrete vectors with n=2: DATA = [ ('a', 4), ('b', 5), ('c', 5), ('d', 4), ('e', 2), ('f', 5), ] How can …

python graph matplotlib data-visualization
d3.js change color and size on line graph dot on mouseover

I made a line graph with d3.js (see the attached image1). I managed to insert tooltips on graph dots …

javascript jquery d3.js data-visualization
Hide labels in pie charts (MS Chart for .Net)

I can't seem to find the property that controls visibility of labels in pie charts. I need to turn the …

c# asp.net data-visualization mschart
How to make a sunburst plot in R or Python?

So far I have been unable to find an R library that can create a sunburst plot like those by …

python r ggplot2 data-visualization sunburst-diagram
Plot point markers and lines in different hues but the same style with seaborn

Given the data frame below: import pandas as pd df = pd.DataFrame({ "n_index": list(range(5)) * 2, "logic": [True] * 5 + [False] * 5, "value": …

python data-visualization seaborn aesthetics
Diagonal labels orientation on x-axis in heatmap(s)

Creating heatmaps in R has been a topic of many posts, discussions and iterations. My main problem is that it's …

r label data-visualization heatmap lattice
A simple scatterplot example in D3.js?

I'm looking for an example of how to draw a scatterplot in D3.js. I haven't been able to find …

javascript data-visualization d3.js
Stacking multiple plots, vertically with the same x axis but different Y axes in R

I have a data.frame with multiple time series vectors against a date:time vector. I would like to plot …

r plot data-visualization