My dataframe looks like this:
Index | A | B | C | D |
USA | 1 | 2 | 1 | 2 |
GER | 2 | 3 | 2 | 3 |
RUS | 3 | 4 | 3 | 4 |
GBR | 4 | 5 | 4 | 5 |
(The values are not the true ones) I want to make a bar plot for only the first 3 rows, where each "bar" is a variable (A, B, C, D) and the rows are shown like this example:
Where, for example, USA is blue, GER Is red and RUS Is green.
I tried using matplotlib and seaborn, so I'm open to suggestions.
