I have a data frame like this:
__________
| | sums |
|---+------|
| a | 122 |
|---+------|
| b | 23 |
|---+------|
| c | 321 |
|__________|
*Notice "a","b" and "c" are row names.
I would like to see a plot like this:
___
300 -| | |
200 -| ___ | |
100 -| | | ___ | |
0 -|_|___|_|___|_|___|______
a b c
How can I accomplish that?

