bubble-chart Questions
3
Solved
I saw a plot generated in excel and I was wondering if R could also do it.
This picture is essentially a visualization of a crosstab table comparing the days of the week to preferred meals on that ...
Jocular asked 19/12, 2013 at 4:38
2
Solved
An example dataset:
A <- c('a','b', 'c','d','e')
types <- factor(A)
B <- c(1,2,3,4,5)
C <- c(6,7,8,9,10)
D <- c(1,2,1,2,3)
ABC <- data.frame(B,C,D,types)
library(ggplot2)
ggplot...
Savage asked 6/10, 2014 at 14:3
1
I'm trying to use seaborn to create a colored bubbleplot of 3-D points (x,y,z), each coordinate being an integer in range [0,255]. I want the axes to represent x and y, and the hue color and size o...
Vastah asked 17/3, 2020 at 11:36
1
I am trying to recreate this visualization of a bubble chart using ggplot2 (I have found the code for doing this in R, but not with the ggplot2 package). This is what I have so far. There are some ...
Dorweiler asked 2/10, 2018 at 16:47
1
Solved
I am currently trying to make a bubble chart in Matplotlib where the bubbles do not overlap, so packing the circles/bubbles in the chart, approximately like
What I thought might work:
Plot the fi...
Admissive asked 9/9, 2017 at 14:12
1
Solved
I am trying to adapt the standard plotly animated bubble chart to a csv file with these columns:
index,country,year,Country code,Total population (Gapminder),Life satisfaction in Cantril Ladder (W...
Wrongful asked 16/8, 2017 at 11:3
1
Solved
I am currently trying to change the sizes of the Bubbles for Plotly's bubble map manually. I was successful in changing the colors of the map using the data provided but I am unable to use the same...
Debbi asked 11/9, 2016 at 1:20
1
Solved
I'm trying to modify this code bl.ocks.org/mbostock/7881887 so that I can use the technique to show a word cloud where the circle size would be relative to the no of words in a file but my main pro...
Response asked 25/11, 2015 at 23:49
1
Solved
I'm trying to create a wordcloud with the D3 pack layout with a horizontal arrangement.
Instead of limiting the width, I am limiting the height.
The pack layout automatically disposes the circles...
Devilkin asked 11/11, 2015 at 14:42
1
Solved
I want to print a bubble chart in R. The problem I run into is that both, my x and my y axis are discrete. In theory this means a lot of data points (bubbles) end up on the same coordinate. I would...
Sabatier asked 5/11, 2014 at 12:17
1
Solved
I'm using nvd3 and have a few charts where the legend is much to large. E.g. a scatter/bubble with 15 groups and the group names are long. The legend is so large that it leaves almost no room for t...
Pedantry asked 25/9, 2013 at 16:9
2
Solved
With Highcharts 3.0 it is possible to create charts with type 'bubble', whereas prior to 3.0 it was necessary to use a 'scatter' chart and modify marker size to make bubble charts. The nice thing a...
Lh asked 29/3, 2013 at 15:15
3
Solved
I am learning d3. There are certain ways of loading the data in d3 js. But all of them seem to make a HTTP GET. In my scenario, I already have the json data in a string. How can I use this string i...
Manicdepressive asked 7/6, 2012 at 15:24
1
© 2022 - 2024 — McMap. All rights reserved.