Hello,
I'm looking for a straightforward way to draw a scatter plot to show numerical results, grouped by category label. x values will be the numerical value, and y values will be the the categories.
I have data that looks like this
Data table
Label Value
USA 2
USA 4
USA 5
USA 6
USA 8
USA 9
USA 12
USA 23
Canada 2
Canada 3
Canada 5
Canada 9
Canada 10
Canada 11
Canada 14
England 21
...
Egypt 20
And I want a chart that will look like this:
Chart
USA | x x
xx x x x
x
Canada | xx
x x xx x
England | x xx
x x
France | x xxx x xx
Egypt | x xx x
x
+--------------------------------
Result 1
5 10
15 20
25
When I've tried this before, the chart just prints every instance of the label in my data table, and fails to group them together. This seems like a fairly common type of graphic, so I'm hoping someone has a good idea here.