In R I have a data.frame like the one on the top of the picture.
Is there a possibility to create a barplot like below?
data.frame:
X1 X2 X3
--- ---- ---- ----
A 2 3 4
B 4 2 1
C 1 NA NA
Barplot:
----------------------------
| |
| # # |
| # # # |
| # # # # # |
| # # # # # # # |
----------------------------
X1 X2 X3 X1 X2 X3 x1
A B C
See Question&Answers more detail:os