Questions tagged [bubble-chart]

Bubble chart is a kind of graph where we can plot 3 values. One value in X-axis, one in Y-axis and 3rd one is shown using the diameter of the bubble. It is much similar like a table where the values are represented with the bubbles' diameters.

478 questions
4
votes
1 answer

Colours of the bubbles in a bubble charts in a user-defined fashion, using ggplot2

How can I decide myself on the colours of the bubbles in a bubble chart, say if I want then to appear in grey, dark grey and light grey? Or if I want to choose the colours myself for each level of the chosen variable? I give you an example with data…
CBechet
  • 171
  • 2
  • 13
4
votes
1 answer

How to make a bubble chart from CSV file?

So I have the following file, data.csv. Which looks like this: TestID,Cronbach,Percent Correct,Population 12416,0.866,0.17,26 12421,0.945,0.21,8 12385,0.777,0.40,258 12412,0.85,0.44,34 12407,0.831,0.45,48 And I want it to look like this: [ ["Test…
programking
  • 1,376
  • 1
  • 17
  • 32
4
votes
1 answer

Creating a legend for a bubble chart using D3

I have been trying to learn D3 (Bubble Charts specifically). I have created a very simple chart here: //This is making the demensions for the circles and canvas //The format and color is for hovering over the circles for the dialog box var…
4
votes
2 answers

Programming in R (Bubble Chart visualization)

I have a dataset for passenger travel frequency: CountryOrigin - has 40 + country names (INDIA,AUSTRALIA,CHINA,JAPAN,BATAM,BALI,SINGAPORE) CountryDestination - has 40+ country names (INDIA,AUSTRALIA,CHINA,JAPAN,BATAM,BALI,SINGAPORE) IND …
Leeya
  • 170
  • 2
  • 15
4
votes
1 answer

Is it possible to make a legend for Bubble Chart?

Currently there is no example on the internet for a bubble chart having a legend, using dc.js, with the dc.legend() function. that.sessions_scatterplot .width(830) .height(350) .transitionDuration(1000) .margins({top:…
Isha
  • 61
  • 6
4
votes
1 answer

How to create a complex bubble chart in R

I have a data set like this (simplified for illustration purposes): zz <- textConnection("Company Market.Cap Institutions.Own Price.Earnings Industry ExxonMobil 405.69 50% 9.3 Energy Citigroup 156.23 67% 18.45 Banking Pfizer 212.51 …
Tom Hughes
  • 241
  • 2
  • 7
4
votes
2 answers

D3.js visualization from circles to triangles

Does anybody know how I might change the circles in this graph http://bost.ocks.org/mike/nations/ to be triangles and still dynamically grow and shrink?
Apollo
  • 8,874
  • 32
  • 104
  • 192
3
votes
0 answers

d3.hierarchy not giving x, y, r values

I am trying to create a bubble plot in d3. This is my code: dataset = { "children": [ { "children": [ { "Name": "Olives", "Count": 4319 }, { "Name": "Tea", "Count": 4159 }, { "Name": "Mashed Potatoes",…
chiru player
  • 301
  • 3
  • 10
3
votes
1 answer

Convert absolute values to ranges for charting in R

Warning: still new to R. I'm trying to construct some charts (specifically, a bubble chart) in R that shows political donations to a campaign. The idea is that the x-axis will show the amount of contributions, the y-axis the number of…
tchaymore
  • 3,728
  • 13
  • 55
  • 86
3
votes
0 answers

Flutter: Bubbles layout representing data

I am trying to achieve result closely to the image below. It should show bubbles with categories of user spendings. Bubbles should be scaled depending on value and should not overlap each other. Could somebody help with it, please? I have already…
Daniel
  • 51
  • 1
3
votes
1 answer

Nested figure combining bubble plots with tables

Dear community members: In this article the following figure (Figure 3) is found: It is a type of nested bubble plot combined with tables, for a hierarchy of different taxonomic ranks. It extends from phylum to class to order, showing the relative…
3
votes
1 answer

d3v4 bubble chart update

I've got an old d3v3 bubble chart -- it had some animation aspects -- I am trying to upgrade it to a v4 //version 3 https://jsfiddle.net/497tmhu0/ There is always a desire to have some animation for when these bubbles load for the first time. So…
The Old County
  • 89
  • 13
  • 59
  • 129
3
votes
2 answers

How to create a bubble chart like d3 in iOS

I need to create similar bubble chart as below in my project. I tried using collectionview but I am facing issue with the cell frame. what will be the best way to draw this in iOS?
CST
  • 313
  • 2
  • 10
3
votes
0 answers

Highcharts: is it possible to show all data labels in a bubble chart without them overlapping?

I'm building a Highcharts bubble chart and am running into a challenge formatting the data labels. The data will be regularly updated, so there will be plenty of times when the bubbles either overlap or are very close to each other. By default,…
3
votes
1 answer

How create legend for bubble chart in d3? Legend not showing up

My aim is to add a legend to Clustered Bubble Chart based on the color of a cluster. The way that I did has no results. In my CSV file, I created 5 clustered with different colors. In fact, I want to differentiate each cluster by name and color. The…
parastoo
  • 372
  • 1
  • 4
  • 20
1
2
3
31 32